Searched defs:entrySet (Results 26 - 50 of 81) sorted by relevance

1234

/external/emma/core/java12/com/vladium/util/
H A DSoftValueMap.java395 public Set entrySet () method in class:SoftValueMap
397 throw new UnsupportedOperationException ("not implemented: entrySet");
/external/guava/guava/src/com/google/common/collect/
H A DAbstractBiMap.java144 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
194 final Iterator<Entry<K, V>> iterator = delegate.entrySet().iterator();
269 private transient Set<Entry<K, V>> entrySet; field in class:AbstractBiMap
271 @Override public Set<Entry<K, V>> entrySet() { method in class:AbstractBiMap
272 Set<Entry<K, V>> result = entrySet;
273 return (result == null) ? entrySet = new EntrySet() : result;
277 final Set<Entry<K, V>> esDelegate = delegate.entrySet();
H A DImmutableBiMap.java234 @Override public ImmutableSet<Entry<K, V>> entrySet() { method in class:ImmutableBiMap
235 return delegate().entrySet();
H A DImmutableMap.java214 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
276 Entry<K, V>[] entries = map.entrySet().toArray(new Entry[0]);
358 public abstract ImmutableSet<Entry<K, V>> entrySet(); method in class:ImmutableMap
380 return this.entrySet().equals(that.entrySet());
390 return entrySet().hashCode();
409 for (Entry<?, ?> entry : map.entrySet()) {
H A DImmutableMultiset.java204 return copyFromEntries(multiset.entrySet());
330 for (Entry<?> entry : that.entrySet()) {
341 return Sets.hashCodeImpl(entrySet());
345 return entrySet().toString();
348 private transient ImmutableSet<Entry<E>> entrySet; field in class:ImmutableMultiset
351 public Set<Entry<E>> entrySet() { method in class:ImmutableMultiset
352 ImmutableSet<Entry<E>> es = entrySet;
353 return (es == null) ? (entrySet = createEntrySet()) : es;
450 return multiset.entrySet();
462 int distinct = multiset.entrySet()
[all...]
H A DArrayTable.java540 ColumnEntrySet entrySet; field in class:ArrayTable.Column
542 @Override public Set<Entry<R, V>> entrySet() { method in class:ArrayTable.Column
543 ColumnEntrySet set = entrySet;
544 return (set == null) ? entrySet = new ColumnEntrySet(columnIndex) : set;
618 transient ColumnMapEntrySet entrySet; field in class:ArrayTable.ColumnMap
620 @Override public Set<Entry<C, Map<R, V>>> entrySet() { method in class:ArrayTable.ColumnMap
621 ColumnMapEntrySet set = entrySet;
622 return (set == null) ? entrySet = new ColumnMapEntrySet() : set;
685 RowEntrySet entrySet; field in class:ArrayTable.Row
687 @Override public Set<Entry<C, V>> entrySet() { method in class:ArrayTable.Row
764 transient RowMapEntrySet entrySet; field in class:ArrayTable.RowMap
766 @Override public Set<Entry<R, Map<C, V>>> entrySet() { method in class:ArrayTable.RowMap
[all...]
H A DImmutableSortedMap.java251 Entry<K, V>[] entries = map.entrySet().toArray(new Entry[0]);
393 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
459 private transient ImmutableSet<Entry<K, V>> entrySet; field in class:ImmutableSortedMap
465 @Override public ImmutableSet<Entry<K, V>> entrySet() { method in class:ImmutableSortedMap
466 ImmutableSet<Entry<K, V>> es = entrySet;
467 return (es == null) ? (entrySet = createEntrySet()) : es;
516 return map.entrySet();
H A DLinkedListMultimap.java781 public Set<Entry<K>> entrySet() { method in class:LinkedListMultimap.MultisetView
1040 Set<Entry<K, Collection<V>>> entrySet;
1042 @Override public Set<Entry<K, Collection<V>>> entrySet() {
1043 Set<Entry<K, Collection<V>>> result = entrySet;
1045 entrySet = result = new AsMapEntries();
H A DMapConstraints.java293 private transient Set<Entry<K, V>> entrySet; field in class:MapConstraints.ConstrainedMap
303 @Override public Set<Entry<K, V>> entrySet() { method in class:MapConstraints.ConstrainedMap
304 Set<Entry<K, V>> result = entrySet;
306 entrySet = result =
307 constrainedEntrySet(delegate.entrySet(), constraint);
420 Set<Entry<K, Collection<V>>> entrySet;
427 @Override public Set<Entry<K, Collection<V>>> entrySet() {
428 Set<Entry<K, Collection<V>>> result = entrySet;
430 entrySet = result = constrainedAsMapEntries(
431 asMapDelegate.entrySet(), constrain
510 final Set<Entry<K, Collection<V>>> entrySet; field in class:MapConstraints.ConstrainedAsMapValues
516 ConstrainedAsMapValues(Collection<Collection<V>> delegate, Set<Entry<K, Collection<V>>> entrySet) argument
[all...]
H A DMapMaker.java94 * java.util.Map.Entry} instance retrieved from the map's {@linkplain Map#entrySet entry set} is a
911 public Set<Entry<K, V>> entrySet() { method in class:MapMaker.NullConcurrentMap
H A DMultisets.java118 transient Set<Multiset.Entry<E>> entrySet; field in class:Multisets.UnmodifiableMultiset
121 @Override public Set<Multiset.Entry<E>> entrySet() { method in class:Multisets.UnmodifiableMultiset
122 Set<Multiset.Entry<E>> es = entrySet;
126 ? entrySet = (Set) Collections.unmodifiableSet(delegate.entrySet())
379 transient Set<Entry<E>> entrySet; field in class:Multisets.SetMultiset
381 @Override public Set<Entry<E>> entrySet() { method in class:Multisets.SetMultiset
382 Set<Entry<E>> es = entrySet;
384 es = entrySet = new EntrySet<E>() {
513 final Iterator<Entry<E>> iterator1 = multiset1.entrySet()
[all...]
H A DStandardTable.java203 = backingMap.entrySet().iterator();
308 = backingMap.entrySet().iterator();
320 columnIterator = rowEntry.getValue().entrySet().iterator();
432 Set<Entry<C, V>> entrySet; field in class:StandardTable.Row
435 public Set<Entry<C, V>> entrySet() { method in class:StandardTable.Row
436 Set<Entry<C, V>> result = entrySet;
438 return entrySet = new RowEntrySet();
461 final Iterator<Entry<C, V>> iterator = map.entrySet().iterator();
544 = backingMap.entrySet().iterator();
617 = backingMap.entrySet()
[all...]
H A DAbstractMultimap.java895 = subMap.entrySet().iterator();
1115 keyIterator = map.entrySet().iterator();
1177 transient Set<Map.Entry<K, Collection<V>>> entrySet; field in class:AbstractMultimap.AsMap
1179 @Override public Set<Map.Entry<K, Collection<V>>> entrySet() { method in class:AbstractMultimap.AsMap
1180 Set<Map.Entry<K, Collection<V>>> result = entrySet;
1181 return (result == null) ? entrySet = new AsMapEntries() : result;
1257 return Collections2.safeContains(submap.entrySet(), o);
1273 = submap.entrySet().iterator();
H A DMaps.java361 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
550 for (Entry<? extends K, ? extends V> entry : left.entrySet()) {
730 * @param entrySet the entries for which to return an unmodifiable view
734 Set<Entry<K, V>> entrySet) {
736 Collections.unmodifiableSet(entrySet));
1202 Set<Entry<K, V2>> entrySet; field in class:Maps.TransformedEntriesMap
1204 @Override public Set<Entry<K, V2>> entrySet() { method in class:Maps.TransformedEntriesMap
1205 Set<Entry<K, V2>> result = entrySet;
1207 entrySet = result = new EntrySet<K, V2>() {
1214 fromMap.entrySet()
733 unmodifiableEntrySet( Set<Entry<K, V>> entrySet) argument
1761 Set<Entry<K, V>> entrySet; field in class:Maps.FilteredKeyMap
1763 @Override public Set<Entry<K, V>> entrySet() { method in class:Maps.FilteredKeyMap
1801 Set<Entry<K, V>> entrySet; field in class:Maps.FilteredEntryMap
1803 @Override public Set<Entry<K, V>> entrySet() { method in class:Maps.FilteredEntryMap
1932 private Set<Entry<K, V>> entrySet; field in class:Maps.ImprovedAbstractMap
1934 @Override public Set<Entry<K, V>> entrySet() { method in class:Maps.ImprovedAbstractMap
[all...]
H A DMultimaps.java518 Set<Entry<K, Collection<V>>> entrySet;
520 @Override public Set<Map.Entry<K, Collection<V>>> entrySet() {
521 Set<Entry<K, Collection<V>>> result = entrySet;
523 ? entrySet
524 = unmodifiableAsMapEntries(unmodifiableMap.entrySet())
1058 return map.entrySet().contains(Maps.immutableEntry(key, value));
1119 return map.entrySet().remove(Maps.immutableEntry(key, value));
1154 return map.entrySet();
1250 && map.entrySet().remove(
1866 multimap().asMap().entrySet()
2649 EntrySet entrySet; field in class:Multimaps.FilteredMultimap.AsMap
2651 @Override public Set<Map.Entry<K, Collection<V>>> entrySet() { method in class:Multimaps.FilteredMultimap.AsMap
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractBiMap.java140 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
190 final Iterator<Entry<K, V>> iterator = delegate.entrySet().iterator();
265 private transient Set<Entry<K, V>> entrySet; field in class:AbstractBiMap
267 @Override public Set<Entry<K, V>> entrySet() { method in class:AbstractBiMap
268 Set<Entry<K, V>> result = entrySet;
269 return (result == null) ? entrySet = new EntrySet() : result;
273 final Set<Entry<K, V>> esDelegate = delegate.entrySet();
H A DImmutableMap.java133 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
176 = getOnlyElement(map.entrySet());
180 for (Entry<? extends K, ? extends V> e : map.entrySet()) {
226 public final ImmutableSet<Entry<K, V>> entrySet() { method in class:ImmutableMap
233 return delegate.entrySet();
H A DLinkedListMultimap.java777 public Set<Entry<K>> entrySet() { method in class:LinkedListMultimap.MultisetView
1036 Set<Entry<K, Collection<V>>> entrySet;
1038 @Override public Set<Entry<K, Collection<V>>> entrySet() {
1039 Set<Entry<K, Collection<V>>> result = entrySet;
1041 entrySet = result = new AsMapEntries();
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java115 @Override public Set<Entry<K, V>> entrySet() { method in class:SafeTreeMap
116 return delegate.entrySet();
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractBiMapTest.java45 protected Set<Entry<Integer, String>> entrySet; field in class:AbstractBiMapTest
51 entrySet = bimap.entrySet();
255 entrySet.add(Maps.immutableEntry(1, "one"));
263 entrySet.addAll(Collections.singleton(Maps.immutableEntry(1, "one")));
270 entrySet.clear();
271 assertTrue(entrySet.isEmpty());
274 entrySet.clear();
275 assertTrue(entrySet.isEmpty());
280 assertFalse(entrySet
[all...]
H A DForwardingMapTest.java95 @Override public Set<Entry<K, V>> entrySet() { method in class:ForwardingMapTest.StandardImplForwardingMap
100 .entrySet()
228 forward().entrySet();
229 assertEquals("[entrySet]", getCalls());
251 final Set<Map.Entry<String, Boolean>> entrySet = createMock(Set.class);
257 expect(entrySet.iterator())
263 replay(map, entrySet);
270 @Override public Set<Entry<String, Boolean>> entrySet() {
274 return entrySet.iterator();
279 callAllPublicMethods(Set.class, forward.entrySet());
[all...]
H A DSynchronizedMapTest.java116 @Override public Set<Entry<K, V>> entrySet() { method in class:SynchronizedMapTest.TestMap
118 return super.entrySet();
198 Set<Map.Entry<String, Integer>> entrySet = map.entrySet();
199 assertTrue(entrySet instanceof SynchronizedSet);
200 assertSame(mutex, ((SynchronizedSet<?>) entrySet).mutex);
/external/jmdns/src/javax/jmdns/impl/
H A DDNSCache.java118 public Set<Map.Entry<String, List<? extends DNSEntry>>> entrySet() { method in class:DNSCache._EmptyCache
285 * @see java.util.AbstractMap#entrySet()
288 public Set<Map.Entry<String, List<? extends DNSEntry>>> entrySet() { method in class:DNSCache
301 for (Map.Entry<String, List<? extends DNSEntry>> entry : this.entrySet()) {
326 this.entrySet().add(new _CacheEntry(key, value));
467 this.entrySet().add(new _CacheEntry(dnsEntry.getKey(), aNewValue));
489 this.entrySet().remove(existingEntry);
521 this.entrySet().add(new _CacheEntry(newDNSEntry.getKey(), aNewValue));
536 for (Map.Entry<String, List<? extends DNSEntry>> entry : this.entrySet()) {
/external/nist-sip/java/gov/nist/core/
H A DNameValueList.java300 * @see java.util.Map#entrySet()
302 public Set<java.util.Map.Entry<String, NameValue>> entrySet() { method in class:NameValueList
303 return this.hmap.entrySet();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DHashMapTest.java40 public Set entrySet() { method in class:HashMapTest.MockMap
49 public Set entrySet() { method in class:HashMapTest.MockMapNull
291 * @tests java.util.HashMap#entrySet()
294 // Test for method java.util.Set java.util.HashMap.entrySet()
295 Set s = hm.entrySet();
377 Object[] entries = map.entrySet().toArray();
379 assertTrue("Failed to find proxy association", map.entrySet().contains(entry));
731 Set entrySet = map.entrySet();
732 Iterator e = entrySet
[all...]

Completed in 415 milliseconds

1234