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

  /packages/apps/Contacts/src/com/android/contacts/util/
NameConverter.java 154 Map<String, String> mapValues = displayNameToStructuredName(context, displayName);
155 for (String key : mapValues.keySet()) {
156 contentValues.put(key, mapValues.get(key));
  /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));
MapsTransformValuesUnmodifiableIteratorTest.java 140 // Assert that expectedValues > mapValues and that
141 // mapValues > expectedValues; i.e. that expectedValues == mapValues.
143 Collection<?> mapValues = map.values();
144 assertEquals(expectedValues.size(), mapValues.size());
145 assertTrue(expectedValues.containsAll(mapValues));
146 assertTrue(mapValues.containsAll(expectedValues));
  /external/llvm/lib/CodeGen/
RegisterCoalescer.cpp     [all...]

Completed in 150 milliseconds