HomeSort by relevance Sort by last modified time
    Searched defs:mapValues (Results 1 - 3 of 3) sorted by null

  /external/guava/guava-tests/test/com/google/common/collect/
MapsTransformValuesTest.java 87 // Assert that expectedValues > mapValues and that
88 // mapValues > expectedValues; i.e. that expectedValues == mapValues.
90 Collection<?> mapValues = map.values();
91 assertEquals(expectedValues.size(), mapValues.size());
92 assertTrue(expectedValues.containsAll(mapValues));
93 assertTrue(mapValues.containsAll(expectedValues));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
NameConverter.java 160 Map<String, String> mapValues = displayNameToStructuredName(context, displayName);
161 for (String key : mapValues.keySet()) {
162 contentValues.put(key, mapValues.get(key));
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp     [all...]

Completed in 161 milliseconds