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

1 2 3 4 5 6 7 8 9

  /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...]
  /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/python/cpython3/Lib/idlelib/
dynoption.py 24 def SetMenu(self,valueList,value=None):
27 valueList - list of new options
31 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);
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
DynamicConfig.java 122 List<String> valueList = new ArrayList<String>();
125 valueList.add(parser.nextText());
130 dynamicConfigMap.put(key, valueList);
  /test/vti/dashboard/src/main/java/com/android/vts/util/
Histogram.java 150 double[] valueList = Doubles.toArray(values);
153 Math.round(new Percentile().evaluate(valueList, percentiles[i]) * 1000d)
  /system/netd/libbpf/
BpfMapTest.cpp 176 std::vector<uint32_t> valueList;
182 valueList.push_back(readValue.value());
184 ASSERT_EQ((size_t)TEST_MAP_SIZE, valueList.size());
185 std::sort(valueList.begin(), valueList.end());
187 EXPECT_EQ(key * 10, valueList[key]);
  /frameworks/base/cmds/statsd/src/external/
puller_util.cpp 133 vector<FieldValue>* valueList = data[i]->getMutableValues();
147 (*valueList)[0].mValue.setInt(hostUid);
  /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;
  /build/blueprint/
ninja_defs.go 371 outputs = valueList(b.Outputs, pkgNames, outputEscaper)
372 implicitOuts = valueList(b.ImplicitOutputs, pkgNames, outputEscaper)
373 explicitDeps = valueList(b.Inputs, pkgNames, inputEscaper)
374 implicitDeps = valueList(b.Implicits, pkgNames, inputEscaper)
375 orderOnlyDeps = valueList(b.OrderOnly, pkgNames, inputEscaper)
379 implicitDeps = append(valueList(b.RuleDef.CommandDeps, pkgNames, inputEscaper), implicitDeps...)
380 orderOnlyDeps = append(valueList(b.RuleDef.CommandOrderOnly, pkgNames, inputEscaper), orderOnlyDeps...)
419 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...]
  /test/suite_harness/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...]
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/6.1.1/
asm-analysis-6.1.1.jar 

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 9