HomeSort by relevance Sort by last modified time
    Searched refs:valueList (Results 1 - 25 of 178) sorted by null

1 2 3 4 5 6 7 8

  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSortedMap.java 33 private final transient ImmutableList<V> valueList;
35 RegularImmutableSortedMap(RegularImmutableSortedSet<K> keySet, ImmutableList<V> valueList) {
37 this.valueList = valueList;
42 ImmutableList<V> valueList,
46 this.valueList = valueList;
68 return Maps.immutableEntry(keyList.get(index), valueList.get(index));
91 return valueList;
97 return (index == -1) ? null : valueList.get(index)
    [all...]
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
CarRadioManagerTest.java 59 Integer[] valueList = new Integer[4];
60 value.value.int32Values.toArray(valueList);
62 "Index out of range: " + valueList[0] + " (0, " + NUM_PRESETS + ")",
63 valueList[0] < 1);
65 "Index out of range: " + valueList[0] + " (0, " + NUM_PRESETS + ")",
66 valueList[0] > NUM_PRESETS);
69 new CarRadioPreset(valueList[0], valueList[1], valueList[2], valueList[3])
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
MultiMap.java 61 for (List<V> valueList : mInternalMap.values()) {
62 if (valueList.contains(value)) {
96 List<V> valueList = mInternalMap.get(key);
97 if (valueList == null) {
98 valueList = new LinkedList<V>();
99 mInternalMap.put(key, valueList);
101 valueList.add(value);
145 for (List<V> valueList : mInternalMap.values()) {
146 allValues.addAll(valueList);
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
dynOptionMenuWidget.py 24 def SetMenu(self,valueList,value=None):
27 valueList - list of new options
31 for item in valueList:
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
dynOptionMenuWidget.py 24 def SetMenu(self,valueList,value=None):
27 valueList - list of new options
31 for item in valueList:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
dynOptionMenuWidget.py 24 def SetMenu(self,valueList,value=None):
27 valueList - list of new options
31 for item in valueList:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
dynOptionMenuWidget.py 24 def SetMenu(self,valueList,value=None):
27 valueList - list of new options
31 for item in valueList:
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
InclusiveCriterion.py 64 valueList = stringNewVal.split()
66 if self.noValue in valueList:
75 for currentValue in valueList:
  /frameworks/opt/vcard/java/com/android/vcard/
VCardSourceDetector.java 104 final List<String> valueList = property.getValueList();
107 && valueList.size() > 0) {
108 final String versionString = valueList.get(0);
120 if (valueList.size() > 0) {
121 mSpecifiedCharset = valueList.get(0);
  /external/python/cpython2/Lib/idlelib/
dynOptionMenuWidget.py 23 def SetMenu(self,valueList,value=None):
26 valueList - list of new options
30 for item in valueList:
  /external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
IsIterableContainingInOrderTest.java 37 List<WithValue> valueList = asList(make(1), make(2));
38 assertMismatchDescription("no item was value with <3>", contains123, valueList);
IsIterableContainingInRelativeOrderTest.java 57 List<WithValue> valueList = asList(make(1), make(2));
58 assertMismatchDescription("value with <3> was not found after <WithValue 2>", contains123, valueList);
  /cts/common/util/src/com/android/compatibility/common/util/
DynamicConfig.java 91 List<String> valueList = new ArrayList<String>();
94 valueList.add(parser.nextText());
99 dynamicConfigMap.put(key, valueList);
  /external/guava/guava-tests/benchmark/com/google/common/collect/
MapBenchmark.java 184 List<Element> valueList = newArrayList(sampleData.getValuesInSet());
185 Collections.sort(valueList);
186 values = valueList;
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/suite/
ModuleRepoSuite.java 389 List<String> valueList = map.get(key);
390 if (valueList == null) {
391 valueList = new ArrayList<>();
392 map.put(key, valueList);
394 valueList.add(value);
  /build/blueprint/
ninja_defs.go 364 outputs = valueList(b.Outputs, pkgNames, outputEscaper)
365 implicitOuts = valueList(b.ImplicitOutputs, pkgNames, outputEscaper)
366 explicitDeps = valueList(b.Inputs, pkgNames, inputEscaper)
367 implicitDeps = valueList(b.Implicits, pkgNames, inputEscaper)
368 orderOnlyDeps = valueList(b.OrderOnly, pkgNames, inputEscaper)
372 implicitDeps = append(valueList(b.RuleDef.CommandDeps, pkgNames, inputEscaper), implicitDeps...)
411 func valueList(list []*ninjaString, pkgNames map[*packageContext]string,
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralRulesTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralRulesTest.java     [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
ModuleRepo.java 634 List<String> valueList = map.get(name);
635 if (valueList == null) {
636 valueList = new ArrayList<>();
637 map.put(name, valueList);
639 valueList.add(value);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java     [all...]
  /external/messageformat/java/com/ibm/icu/simple/
PluralRules.java     [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
_c_m_a_p.py 201 valueList = [entry[1] for entry in charCodeList]
203 valueList = map(ttFont.getGlyphID, valueList)
205 glyphIdArray = array.array("B", valueList)
852 valueList = [cmap.get(code, ".notdef") for code in codes]
853 valueList = map(ttFont.getGlyphID, valueList)
854 glyphIndexArray = array.array("H", valueList)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultimap.java 194 Collection<V> valueList = builderMultimap.get(key);
197 valueList.add(value);

Completed in 1782 milliseconds

1 2 3 4 5 6 7 8