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

1 2 3 4 5 6 7 8 9

  /external/guava/guava/src/com/google/common/collect/
DescendingImmutableSortedMultiset.java 39 return forward.lastEntry();
43 public Entry<E> lastEntry() {
EmptyImmutableSortedMultiset.java 43 public Entry<E> lastEntry() {
SortedMultiset.java 68 Entry<E> lastEntry();
UnmodifiableSortedMultiset.java 79 public Entry<E> lastEntry() {
80 return delegate().lastEntry();
AbstractSortedMultiset.java 72 public Entry<E> lastEntry() {
DescendingMultiset.java 93 return forwardMultiset().lastEntry();
96 @Override public Entry<E> lastEntry() {
ForwardingSortedMultiset.java 62 * SortedMultiset#isEmpty}, {@link SortedMultiset#lastEntry}, {@link SortedMultiset#subMultiset},
127 public Entry<E> lastEntry() {
128 return delegate().lastEntry();
132 * A sensible definition of {@link #lastEntry()} in terms of {@code
RegularImmutableSortedMultiset.java 64 public Entry<E> lastEntry() {
AbstractNavigableMap.java 49 public Entry<K, V> lastEntry() {
77 Entry<K, V> entry = lastEntry();
88 return headMap(key, false).lastEntry();
94 return headMap(key, true).lastEntry();
ForwardingNavigableMap.java 67 * A sensible definition of {@link #lowerEntry} in terms of the {@code lastEntry()} of
72 return headMap(key, false).lastEntry();
95 * A sensible definition of {@link #floorEntry} in terms of the {@code lastEntry()} of
100 return headMap(key, true).lastEntry();
202 public Entry<K, V> lastEntry() {
203 return delegate().lastEntry();
207 * A sensible definition of {@link #lastEntry} in terms of the {@code iterator()} of the
209 * wish to override {@code lastEntry} to forward to this implementation.
216 * A sensible definition of {@link #lastKey} in terms of {@code lastEntry}. If you override
217 * {@code lastEntry}, you may wish to override {@code lastKey} to forward to this implementation
    [all...]
TreeRangeMap.java 148 Entry<Cut<K>, RangeMapEntry<K, V>> lastEntry = entriesByLowerBound.lastEntry();
154 lastEntry.getValue().getKey().upperBound);
TreeRangeSet.java 127 Entry<Cut<C>, Range<C>> lastEntry = rangesByLowerBound.lastEntry();
131 return Range.create(firstEntry.getValue().lowerBound, lastEntry.getValue().upperBound);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultiset.java 37 Entry<E> lastEntry();
UnmodifiableSortedMultiset.java 77 public Entry<E> lastEntry() {
78 return delegate().lastEntry();
AbstractSortedMultiset.java 72 public Entry<E> lastEntry() {
DescendingMultiset.java 93 return forwardMultiset().lastEntry();
96 @Override public Entry<E> lastEntry() {
  /libcore/ojluni/src/main/java/java/util/
NavigableMap.java 69 * {@link #pollFirstEntry}, {@link #lastEntry}, and
230 Map.Entry<K,V> lastEntry();
  /external/dng_sdk/source/
dng_misc_opcodes.cpp 350 uint16 lastEntry = table [fCount];
354 table [index] = lastEntry;
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedMultisetTest.java 79 public Entry<E> lastEntry() {
234 forward().lastEntry();
235 assertEquals("[lastEntry]", getCalls());
  /external/jline/src/src/main/java/jline/
History.java 128 int lastEntry = history.size() - 1;
129 if (lastEntry >= 0 && lastEntry != currentIndex) {
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
MessageFormatter.java 159 final Object lastEntry = argArray[argArray.length - 1];
160 if (lastEntry instanceof Throwable) {
161 return (Throwable) lastEntry;
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LocalCache.java 542 Entry<K, Timestamped<V>> lastEntry;
559 lastEntry = nextEntry;
561 return new WriteThroughEntry(lastEntry.getKey(), lastEntry.getValue().getValue());
581 checkState(lastEntry != null);
582 LocalCache.this.remove(lastEntry.getKey(), lastEntry.getValue());
583 lastEntry = null;
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
LookupActivity.java 132 String lastEntry = mHistory.pop();
133 startNavigating(lastEntry, false);
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.cpp 127 camera_metadata_entry lastEntry = lastValues.find(tag);
131 if (lastEntry.count > 0) {
133 if (lastEntry.type == entry.type &&
134 lastEntry.count == entry.count) {
136 size_t bytesPerValue = camera_metadata_type_size[lastEntry.type];
137 size_t entryBytes = bytesPerValue * lastEntry.count;
138 int cmp = memcmp(entry.data.u8, lastEntry.data.u8, entryBytes);
158 } else if (lastEntry.count > 0) {
  /libcore/ojluni/src/main/java/java/text/
MergeCollation.java 210 private transient PatternEntry lastEntry = null;
230 If the strength is RESET, then just change the lastEntry to
232 If not, then remove the current entry, and add it after lastEntry
242 if (lastEntry != null && newEntry.chars.equals(lastEntry.chars)
243 && newEntry.extension.equals(lastEntry.extension)) {
246 throw new ParseException("The entries " + lastEntry + " and "
281 int lastIndex = findLastEntry(lastEntry, excess);
286 lastEntry = saveEntry;
298 lastEntry = newEntry
    [all...]

Completed in 266 milliseconds

1 2 3 4 5 6 7 8 9