HomeSort by relevance Sort by last modified time
    Searched refs:Values (Results 101 - 125 of 129) sorted by null

1 2 3 45 6

  /libcore/luni/src/main/java/java/util/
HashMap.java 31 * <p>All elements are permitted as keys or values, including null.
51 * @param <V> the type of mapped values
119 private transient Collection<V> values; field in class:HashMap
246 result.values = null;
686 * Returns a collection of the values contained in this map. The collection
704 * @return a collection of the values contained in this map.
706 @Override public Collection<V> values() { method in class:HashMap
707 Collection<V> vs = values;
708 return (vs != null) ? vs : (values = new Values());
    [all...]
Hashtable.java 30 * <p>Neither keys nor values can be null. (Use {@code HashMap} or {@code LinkedHashMap} if you
31 * need null keys or values.)
34 * @param <V> the type of mapped values
98 private transient Collection<V> values; field in class:Hashtable
223 result.values = null;
601 * Returns a collection of the values contained in this {@code Hashtable}.
605 * @return a collection of the values.
607 public synchronized Collection<V> values() { method in class:Hashtable
608 Collection<V> vs = values;
609 return (vs != null) ? vs : (values = new Values())
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 71 * @param <V> the type of mapped values
144 transient Collection<V> values; field in class:ConcurrentHashMap
1008 public Collection<V> values() { method in class:ConcurrentHashMap
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileCreationPage.java 175 * Returns the seed used to fill the root element values.
316 new TypeInfo("Values", // UI name
317 "An XML file with simple values: colors, strings, dimensions, etc.", // tooltip
318 ResourceFolderType.VALUES, // folder type
401 private NewXmlFileWizard.Values mValues;
419 protected NewXmlFileCreationPage(String pageName, NewXmlFileWizard.Values values) {
421 mValues = values;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 543 /// that a particular set of values is assigned, and the type information
545 /// time, but struct or array values are handled element-wise as multiple
546 /// values. The splitting of aggregates is performed recursively, so that we
547 /// never have aggregate-typed registers. The values at this point do not
552 /// ValueVTs - The value types of the values, which may not be legal, and
559 /// register or registers are. (Individual values are never synthesized
568 /// Regs - This list holds the registers assigned to the values.
595 /// areValueTypesLegal - Return true if types of all the values are legal.
605 /// append - Add the specified values to this one.
629 /// (if applicable), and includes the number of values added into it
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 41 SF.Values[V] = Val;
118 // width as the host has. We _do not_ want to be comparing 64 bit values when
721 // Now loop over all of the PHI nodes setting their values...
    [all...]
  /external/bison/data/
glr.c 25 ## Default values. ##
98 ## Semantic Values. ##
1108 * RULENUM on the semantic values in RHS to the list of
    [all...]
yacc.c 26 ## Default values. ##
90 ## Semantic Values. ##
1014 `yyvs': related to semantic values,
    [all...]
  /external/chromium/chrome/browser/policy/
device_management_service_unittest.cc 159 testing::Values(
  /external/webkit/Source/JavaScriptCore/wtf/
HashMap.h 60 // iterators iterate over pairs of keys and values
395 typedef typename HashMap<T, U, V, W, X>::const_iterator::Values iterator;
399 iterator it = collection.begin().values();
400 iterator end = collection.end().values();
  /external/webkit/Source/WebKit2/UIProcess/
WebContext.cpp 329 for (HashMap<uint64_t, RefPtr<DownloadProxy> >::iterator::Values it = m_downloads.begin().values(), end = m_downloads.end().values(); it != end; ++it) {
  /external/guava/src/com/google/common/collect/
AbstractMultimap.java 46 * a multimap as a map that associates each key with a collection of values. All
51 * #createCollection()}, which creates an empty collection of values for a key.
56 * to create the collection of values for that key. The subclass should not call
63 * through the keys and values in sorted order.
65 * <p>Keys and values may be null, as long as the underlying collection classes
91 * The map variable contains the collection of values associated with each
93 * contain any values for that key, a new collection generated by
95 * remains in the map as long as the multimap has any values for the key. If
96 * all values for the key are removed, the key and collection are removed
102 * empty, the multimap may contain subsequently added values for that key. T
1124 public Collection<V> values() { method
    [all...]
CustomConcurrentHashMap.java 47 * Map#get} atomically computes values on demand (see {@link
202 * @param <V> the type of values to be stored in the returned map
216 * supports atomic, on-demand computation of values. {@link Map#get}
243 * @param computer used to compute values for keys
246 * @param <V> the type of values to be stored in the returned map
285 * Setting values to null is not permitted, but entries may have null keys
286 * or values for various reasons. For example, the key or value may have
288 * CustomConcurrentHashMap treats entries with null keys and values as
297 * @param <V> the type of values to be stored in the returned map
339 * Sets the value of an entry using volatile semantics. Values are se
1570 Collection<V> values; field in class:CustomConcurrentHashMap.Impl
1587 @Override public Collection<V> values() { method in class:CustomConcurrentHashMap.Impl
    [all...]
Maps.java 436 * Returns an immutable map for which the {@link Map#values} are the given
440 * @param values the values to use when constructing the {@code Map}
446 * @throws NullPointerException if any elements of {@code values} is null, or
452 Iterable<V> values, Function<? super V, K> keyFunction) {
455 for (V value : values) {
625 transient Set<V> values;
649 @Override public Set<V> values() {
650 Set<V> result = values;
652 ? values = Collections.<V>unmodifiableSet(delegate.values()
    [all...]
  /external/doclava/res/assets/templates/
class.cs 322 <table id="enumconstants" class="jd-sumtable"><tr><th colspan="12">Enum Values</th></tr>
577 <!-- Enum Values -->
581 <h2>Enum Values</h2>
  /external/webkit/Source/JavaScriptCore/tests/mozilla/Getopt/
Mixed.pm 440 Values for argument specifiers are:
724 want your values pushed into an array, you'll have to use nextOption
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 460 // Sort SCEVUnknown values with some loose heuristics. TODO: This is
464 // Order pointer values after integer values. This helps SCEVExpander
471 // Compare getValueID values.
512 // Compare constant values.
    [all...]
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java 160 private Settings.Values mSettingsValues;
547 mSettingsValues = new Settings.Values(mPrefs, this, mSubtypeSwitcher.getInputLocaleStr());
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 328 (*===-- Values ------------------------------------------------------------===*)
    [all...]
  /external/v8/test/mjsunit/
object-define-property.js 59 // Values.
117 // that it has the default descriptor values.
124 // have all default values (according to 8.6.1).
134 // with default values if called with non existing property (otherwise
498 // other allowed values
521 // values are of the descriptor are the same as the existing one.
594 // Make sure that obj5 still holds the original values.
681 // Make sure that obj5 still holds the original values.
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 353 (*===-- Global Values -----------------------------------------------------===*)
    [all...]
  /external/blktrace/btt/doc/
btt.tex 217 issued requests (D) and the resultant ratio. We also provide values
238 between IOs. Values provided include the number of seeks (number of IOs
243 The first of the two sections displays values for Q2Q seek distances --
255 We have almost exclusively seen median and mode values of 0, indicating
316 how the larger number of data values for device (8,0) dominates in
478 The activity data file contains a series of data values that indicate
480 processed. The values happen to be in a format easily handled by
488 points are presented with the first column (X values) being the time
489 (in seconds), and the second column (Y values) providing an on/off
490 type of setting. For each pair, the Y values have two settings of
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 1274 milliseconds

1 2 3 45 6