HomeSort by relevance Sort by last modified time
    Searched defs:SimpleEntry (Results 1 - 25 of 34) sorted by null

1 2

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Relation.java 99 result.add(new SimpleEntry<K, V>(key, value));
234 static class SimpleEntry<K, V> implements Entry<K, V> {
239 public SimpleEntry(K key, V value) {
244 public SimpleEntry(Entry<K, V> e) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Relation.java 97 result.add(new SimpleEntry<K, V>(key, value));
232 static class SimpleEntry<K, V> implements Entry<K, V> {
237 public SimpleEntry(K key, V value) {
242 public SimpleEntry(Entry<K, V> e) {
  /external/mockito/src/main/java/org/mockito/internal/util/concurrent/
WeakConcurrentMap.java 325 return new SimpleEntry(nextKey, nextEntry);
337 private class SimpleEntry implements Map.Entry<K, V> {
343 private SimpleEntry(K key, Map.Entry<WeakKey<K>, V> entry) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
SimpleEntryTest.java 23 import java.util.AbstractMap.SimpleEntry;
30 new AbstractMap.SimpleEntry<Integer, String>(1, "test");
31 new AbstractMap.SimpleEntry(null, null);
53 Entry testEntry = new AbstractMap.SimpleEntry(entryToPut);
58 testEntry = new AbstractMap.SimpleEntry(new NullEntry());
62 new AbstractMap.SimpleEntry(null);
71 Entry entry = new AbstractMap.SimpleEntry<Integer, String>(1, "test");
73 entry = new AbstractMap.SimpleEntry(null, null);
78 Entry entry = new AbstractMap.SimpleEntry<Integer, String>(1, "test");
80 entry = new AbstractMap.SimpleEntry(null, null)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
AbstractMap.java 580 * Utility method for SimpleEntry and SimpleImmutableEntry.
589 // Implementation Note: SimpleEntry and SimpleImmutableEntry
602 * arrays of <tt>SimpleEntry</tt> instances in method
607 public static class SimpleEntry<K,V>
622 public SimpleEntry(K key, V value) {
633 public SimpleEntry(Entry<? extends K, ? extends V> entry) {
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMapTest.java 267 static class SimpleEntry<K, V> extends AbstractMapEntry<K, V> {
271 SimpleEntry(K key, V value) {
290 builder.put(new SimpleEntry<String, Integer>(null, 1));
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
SmallSortedMapTest.java 48 // java.util.AbstractMap.SimpleEntry is private in JDK 1.5. We re-implement it
50 private static class SimpleEntry<K, V> implements Map.Entry<K, V> {
54 SimpleEntry(K key, V value) {
242 entrySet.contains(new SimpleEntry<Integer, Integer>(i, i + 1)));
244 entrySet.contains(new SimpleEntry<Integer, Integer>(i, i)));
253 new SimpleEntry<Integer, Integer>(i, i + 1);
273 new SimpleEntry<Integer, Integer>(i, i + 1);
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableMapTest.java 407 static class SimpleEntry<K, V> extends AbstractMapEntry<K, V> {
411 SimpleEntry(K key, V value) {
430 builder.put(new SimpleEntry<String, Integer>(null, 1));
  /external/guice/extensions/persist/lib/
hibernate-search.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.2.29/
mockito-core-2.2.29.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.2.5/
mockito-core-2.2.5.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.7.1/
mockito-core-2.7.1.jar 
  /prebuilts/tools/common/m2/repository/org/mockito/mockito-core/2.7.6/
mockito-core-2.7.6.jar 
  /prebuilts/tools/common/intellij-core/171.2455.10/
intellij-core.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 324 milliseconds

1 2