Home
last modified time | relevance | path

Searched refs:lastEntry (Results 1 – 13 of 13) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
DMergeCollation.java210 private transient PatternEntry lastEntry = null; field in MergeCollation
242 if (lastEntry != null && newEntry.chars.equals(lastEntry.chars) in fixEntry()
243 && newEntry.extension.equals(lastEntry.extension)) { in fixEntry()
246 throw new ParseException("The entries " + lastEntry + " and " in fixEntry()
281 int lastIndex = findLastEntry(lastEntry, excess); in fixEntry()
286 lastEntry = saveEntry; in fixEntry()
298 lastEntry = newEntry; in fixEntry()
DPatternEntry.java117 PatternEntry lastEntry) in addToBuffer() argument
120 if (strength == Collator.PRIMARY || lastEntry != null) in addToBuffer()
124 if (lastEntry != null) { in addToBuffer()
128 lastEntry.appendQuotedChars(toAddTo); in addToBuffer()
/libcore/ojluni/src/main/java/java/util/
DNavigableMap.java230 Map.Entry<K,V> lastEntry(); in lastEntry() method
DCollections.java1974 public Entry<K, V> lastEntry() {
1975 Entry<K,V> last = (Entry<K, V>) nm.lastEntry();
2933 public Entry<K, V> lastEntry()
2934 { synchronized (mutex) { return nm.lastEntry(); } }
4149 public Entry<K, V> lastEntry() {
4150 Entry<K,V> last = nm.lastEntry();
DTreeMap.java667 public Map.Entry<K,V> lastEntry() { in lastEntry() method in TreeMap
1578 public final Map.Entry<K,V> lastEntry() { in lastEntry() method in TreeMap.NavigableSubMap
/libcore/ojluni/src/test/java/time/tck/java/time/zone/
DTCKZoneRulesProvider.java143 assertEquals(versions.lastEntry().getValue(), rules); in test_getVersions_String()
/libcore/ojluni/annotations/sdk/nullability/java/util/
DNavigableMap.annotated.java61 …a.util.Map.Entry<@libcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> lastEntry(); in lastEntry() method
DTreeMap.annotated.java68 …y<@libcore.util.NullFromTypeParam K, @libcore.util.NullFromTypeParam V> lastEntry() { throw new Ru… in lastEntry() method in TreeMap
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DTreeMapTest.java922 assertEquals(objArray[999].toString(), tm.lastEntry().getKey()); in test_lastEntry()
923 assertEquals(objArray[999], tm.lastEntry().getValue()); in test_lastEntry()
925 assertEquals(objArray[999].toString(), tm.lastEntry().getKey()); in test_lastEntry()
926 assertEquals(objArray[999], tm.lastEntry().getValue()); in test_lastEntry()
928 assertEquals(testint9999.toString(), tm.lastEntry().getKey()); in test_lastEntry()
929 Entry entry = tm.lastEntry(); in test_lastEntry()
933 assertNull(tm.lastEntry()); in test_lastEntry()
DTreeMapExtendTest.java97 assertNull(treeMap.lastEntry()); in test_TreeMap_Constructor_Default()
138 assertEquals(tm.lastEntry(), treeMap.lastEntry()); in test_TreeMap_Constructor_Map()
1616 descendingMap.lastEntry()); in test_AscendingSubMap_descendingMap()
1620 assertEquals(navigableMap_startExcluded_endExcluded.lastEntry(), in test_AscendingSubMap_descendingMap()
1631 descendingMap.lastEntry()); in test_AscendingSubMap_descendingMap()
1635 assertEquals(navigableMap_startExcluded_endIncluded.lastEntry(), in test_AscendingSubMap_descendingMap()
1646 descendingMap.lastEntry()); in test_AscendingSubMap_descendingMap()
1650 assertEquals(navigableMap_startIncluded_endExcluded.lastEntry(), in test_AscendingSubMap_descendingMap()
1661 descendingMap.lastEntry()); in test_AscendingSubMap_descendingMap()
1665 assertEquals(navigableMap_startIncluded_endIncluded.lastEntry(), in test_AscendingSubMap_descendingMap()
[all …]
/libcore/luni/src/test/java/libcore/java/util/
DTreeMapTest.java129 assertImmutable(map.lastEntry()); in assertAllEntryMethodsReturnImmutableEntries()
/libcore/ojluni/annotations/hiddenapi/java/util/
DCollections.java1090 public java.util.Map.Entry<K, V> lastEntry() { in lastEntry() method in Collections.CheckedNavigableMap
2578 public java.util.Map.Entry<K, V> lastEntry() { in lastEntry() method in Collections.SynchronizedNavigableMap
3366 public java.util.Map.Entry<K, V> lastEntry() { in lastEntry() method in Collections.UnmodifiableNavigableMap
/libcore/ojluni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java2230 public Map.Entry<K,V> lastEntry() { in lastEntry() method in ConcurrentSkipListMap
3037 public Map.Entry<K,V> lastEntry() { in lastEntry() method in ConcurrentSkipListMap.SubMap