Searched defs:lastEntry (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DMergeCollation.java210 private transient PatternEntry lastEntry = null; field in class:MergeCollation
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
[all...]
H A DPatternEntry.java117 PatternEntry lastEntry)
120 if (strength == Collator.PRIMARY || lastEntry != null)
124 if (lastEntry != null) {
128 lastEntry.appendQuotedChars(toAddTo);
114 addToBuffer(StringBuffer toAddTo, boolean showExtension, boolean showWhiteSpace, PatternEntry lastEntry) argument
/libcore/ojluni/src/main/java/java/util/
H A DNavigableMap.java69 * {@link #pollFirstEntry}, {@link #lastEntry}, and
230 Map.Entry<K,V> lastEntry(); method in interface:NavigableMap
H A DTreeMap.java667 public Map.Entry<K,V> lastEntry() { method in class:TreeMap
1578 public final Map.Entry<K,V> lastEntry() { method in class:TreeMap.NavigableSubMap
H A DCollections.java1967 public Entry<K, V> lastEntry() { method in class:Collections.UnmodifiableNavigableMap
1968 Entry<K,V> last = (Entry<K, V>) nm.lastEntry();
2926 public Entry<K, V> lastEntry() method in class:Collections.SynchronizedNavigableMap
2927 { synchronized (mutex) { return nm.lastEntry(); } }
4140 public Entry<K, V> lastEntry() { method in class:Collections.CheckedNavigableMap
4141 Entry<K,V> last = nm.lastEntry();
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java2230 public Map.Entry<K,V> lastEntry() { method in class:ConcurrentSkipListMap
3037 public Map.Entry<K,V> lastEntry() { method in class:ConcurrentSkipListMap.SubMap

Completed in 90 milliseconds