Home
last modified time | relevance | path

Searched refs:RegularEntrySet (Results 1 – 6 of 6) sorted by relevance

/external/guava/android/guava/src/com/google/common/collect/
DImmutableMapEntrySet.java33 static final class RegularEntrySet<K, V> extends ImmutableMapEntrySet<K, V> { class in ImmutableMapEntrySet
37 RegularEntrySet(ImmutableMap<K, V> map, Entry<K, V>[] entries) { in RegularEntrySet() method in ImmutableMapEntrySet.RegularEntrySet
41 RegularEntrySet(ImmutableMap<K, V> map, ImmutableList<Entry<K, V>> entries) { in RegularEntrySet() method in ImmutableMapEntrySet.RegularEntrySet
/external/guava/guava/src/com/google/common/collect/
DImmutableMapEntrySet.java35 static final class RegularEntrySet<K, V> extends ImmutableMapEntrySet<K, V> { class in ImmutableMapEntrySet
39 RegularEntrySet(ImmutableMap<K, V> map, Entry<K, V>[] entries) { in RegularEntrySet() method in ImmutableMapEntrySet.RegularEntrySet
43 RegularEntrySet(ImmutableMap<K, V> map, ImmutableList<Entry<K, V>> entries) { in RegularEntrySet() method in ImmutableMapEntrySet.RegularEntrySet
DJdkBackedImmutableMap.java70 return new ImmutableMapEntrySet.RegularEntrySet<K, V>(this, entries); in createEntrySet()
DJdkBackedImmutableBiMap.java109 return new ImmutableMapEntrySet.RegularEntrySet<K, V>(this, entries); in createEntrySet()
DRegularImmutableMap.java201 return new ImmutableMapEntrySet.RegularEntrySet<>(this, entries); in createEntrySet()
DRegularImmutableBiMap.java145 : new ImmutableMapEntrySet.RegularEntrySet<K, V>(this, entries); in createEntrySet()