Searched defs:firstEntry (Results 1 - 25 of 44) sorted by relevance

12

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSortedMultiset.java35 Entry<E> firstEntry(); method in interface:SortedMultiset
H A DAbstractSortedMultiset.java66 public Entry<E> firstEntry() { method in class:AbstractSortedMultiset
H A DUnmodifiableSortedMultiset.java72 public Entry<E> firstEntry() { method in class:UnmodifiableSortedMultiset
73 return delegate().firstEntry();
H A DDescendingMultiset.java92 @Override public Entry<E> firstEntry() { method in class:DescendingMultiset
97 return forwardMultiset().firstEntry();
H A DLinkedHashMultimap.java312 private ValueSetLink<K, V> firstEntry; field in class:LinkedHashMultimap.ValueSet
317 this.firstEntry = this;
338 return firstEntry;
348 firstEntry = entry;
354 ValueSetLink<K, V> nextEntry = firstEntry;
440 for (ValueSetLink<K, V> entry = firstEntry;
478 for (ValueSetLink<K, V> entry = firstEntry;
/external/guava/guava/src/com/google/common/collect/
H A DAbstractSortedMultiset.java66 public Entry<E> firstEntry() { method in class:AbstractSortedMultiset
H A DDescendingImmutableSortedMultiset.java38 public Entry<E> firstEntry() { method in class:DescendingImmutableSortedMultiset
44 return forward.firstEntry();
H A DRegularImmutableSortedMultiset.java59 public Entry<E> firstEntry() { method in class:RegularImmutableSortedMultiset
H A DSortedMultiset.java62 Entry<E> firstEntry(); method in interface:SortedMultiset
H A DUnmodifiableSortedMultiset.java74 public Entry<E> firstEntry() { method in class:UnmodifiableSortedMultiset
75 return delegate().firstEntry();
H A DAbstractNavigableMap.java43 public Entry<K, V> firstEntry() { method in class:AbstractNavigableMap
67 Entry<K, V> entry = firstEntry();
100 return tailMap(key, true).firstEntry();
106 return tailMap(key, false).firstEntry();
H A DDescendingMultiset.java92 @Override public Entry<E> firstEntry() { method in class:DescendingMultiset
97 return forwardMultiset().firstEntry();
H A DEmptyImmutableSortedMultiset.java38 public Entry<E> firstEntry() { method in class:EmptyImmutableSortedMultiset
H A DForwardingSortedMultiset.java61 * {@link SortedMultiset#firstEntry} {@link SortedMultiset#headMultiset}, {@link
107 public Entry<E> firstEntry() { method in class:ForwardingSortedMultiset
108 return delegate().firstEntry();
112 * A sensible definition of {@link #firstEntry()} in terms of {@code entrySet().iterator()}.
114 * If you override {@link #entrySet()}, you may wish to override {@link #firstEntry()} to forward
136 * {@link #firstEntry()} to forward to this implementation.
H A DForwardingNavigableMap.java123 * A sensible definition of {@link #ceilingEntry} in terms of the {@code firstEntry()} of
128 return tailMap(key, true).firstEntry();
151 * A sensible definition of {@link #higherEntry} in terms of the {@code firstEntry()} of
156 return tailMap(key, false).firstEntry();
174 public Entry<K, V> firstEntry() { method in class:ForwardingNavigableMap
175 return delegate().firstEntry();
179 * A sensible definition of {@link #firstEntry} in terms of the {@code iterator()} of
181 * {@code firstEntry} to forward to this implementation.
188 * A sensible definition of {@link #firstKey} in terms of {@code firstEntry}. If you override
189 * {@code firstEntry}, yo
[all...]
H A DImmutableSortedMap.java598 return tailMap(key, true).firstEntry();
608 return tailMap(key, false).firstEntry();
617 public Entry<K, V> firstEntry() { method in class:ImmutableSortedMap
H A DLinkedHashMultimap.java316 private ValueSetLink<K, V> firstEntry; field in class:LinkedHashMultimap.ValueSet
321 this.firstEntry = this;
342 return firstEntry;
352 firstEntry = entry;
358 ValueSetLink<K, V> nextEntry = firstEntry;
444 for (ValueSetLink<K, V> entry = firstEntry;
482 for (ValueSetLink<K, V> entry = firstEntry;
H A DAbstractMapBasedMultimap.java1475 public Entry<K, Collection<V>> firstEntry() { method in class:AbstractMapBasedMultimap.NavigableAsMap
1476 Entry<K, Collection<V>> entry = sortedMap().firstEntry();
H A DMaps.java2000 @Override public Entry<K, V2> firstEntry() { method in class:Maps.TransformedEntriesNavigableMap
2001 return transformEntry(fromMap().firstEntry());
3165 public Entry<K, V> firstEntry() { method in class:Maps.UnmodifiableNavigableMap
3166 return unmodifiableOrNull(delegate.firstEntry());
3876 public Entry<K, V> firstEntry() { method in class:Maps.DescendingMap
3882 return forward().firstEntry();
H A DSynchronized.java1399 @Override public Entry<K, V> firstEntry() { method in class:Synchronized.SynchronizedNavigableMap
1401 return nullableSynchronizedEntry(delegate().firstEntry(), mutex);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSafeTreeMap.java156 @Override public Entry<K, V> firstEntry() { method in class:SafeTreeMap
157 return delegate.firstEntry();
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingSortedMultisetTest.java74 public Entry<E> firstEntry() { method in class:ForwardingSortedMultisetTest.StandardImplForwardingSortedMultiset
229 forward().firstEntry();
230 assertEquals("[firstEntry]", getCalls());
H A DForwardingNavigableMapTest.java161 public Entry<K, V> firstEntry() { method in class:ForwardingNavigableMapTest.StandardImplForwardingNavigableMap
339 forward().firstEntry();
340 assertEquals("[firstEntry]", getCalls());
H A DSynchronizedNavigableMapTest.java127 @Override public Entry<K, V> firstEntry() { method in class:SynchronizedNavigableMapTest.TestMap
129 return delegate().firstEntry();
286 create().firstEntry();
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp4805 auto firstEntry = IvarsInfo[oldEnd + i]; local
4806 IvarsInfo.push_back(IvarInfo(firstEntry.Offset + eltIndex * eltSize,
4807 firstEntry.SizeInWords));

Completed in 391 milliseconds

12