Home
last modified time | relevance | path

Searched refs:firstEntry (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/util/jar/
DJarOutputStream.java90 if (firstEntry) { in putNextEntry()
107 firstEntry = false; in putNextEntry()
112 private boolean firstEntry = true; field in JarOutputStream
/libcore/ojluni/src/main/java/java/util/
DNavigableMap.java220 Map.Entry<K,V> firstEntry(); in firstEntry() method
DTreeMap.java684 public Map.Entry<K,V> firstEntry() { in firstEntry() method in TreeMap
1594 public final Map.Entry<K,V> firstEntry() { in firstEntry() method in TreeMap.NavigableSubMap
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DTreeMapTest.java899 assertEquals(objArray[0].toString(), tm.firstEntry().getKey()); in test_firstEntry()
900 assertEquals(objArray[0], tm.firstEntry().getValue()); in test_firstEntry()
902 assertEquals(testint.toString(), tm.firstEntry().getKey()); in test_firstEntry()
903 assertEquals(testint, tm.firstEntry().getValue()); in test_firstEntry()
905 assertEquals(testint.toString(), tm.firstEntry().getKey()); in test_firstEntry()
906 assertEquals(testint, tm.firstEntry().getValue()); in test_firstEntry()
908 assertEquals(testint.toString(), tm.firstEntry().getKey()); in test_firstEntry()
909 Entry entry = tm.firstEntry(); in test_firstEntry()
913 assertNull(tm.firstEntry()); in test_firstEntry()
DTreeMapExtendTest.java89 assertNull(treeMap.firstEntry()); in test_TreeMap_Constructor_Default()
136 assertEquals(tm.firstEntry(), treeMap.firstEntry()); in test_TreeMap_Constructor_Map()
1615 assertEquals(navigableMap_startExcluded_endExcluded.firstEntry(), in test_AscendingSubMap_descendingMap()
1621 descendingMap.firstEntry()); in test_AscendingSubMap_descendingMap()
1630 assertEquals(navigableMap_startExcluded_endIncluded.firstEntry(), in test_AscendingSubMap_descendingMap()
1636 descendingMap.firstEntry()); in test_AscendingSubMap_descendingMap()
1645 assertEquals(navigableMap_startIncluded_endExcluded.firstEntry(), in test_AscendingSubMap_descendingMap()
1651 descendingMap.firstEntry()); in test_AscendingSubMap_descendingMap()
1660 assertEquals(navigableMap_startIncluded_endIncluded.firstEntry(), in test_AscendingSubMap_descendingMap()
1666 descendingMap.firstEntry()); in test_AscendingSubMap_descendingMap()
[all …]
/libcore/luni/src/test/java/libcore/java/util/
DTreeMapTest.java125 assertImmutable(map.firstEntry()); in assertAllEntryMethodsReturnImmutableEntries()
/libcore/jsr166-tests/src/test/java/jsr166/
DTreeSubMapTest.java340 Map.Entry f = map.firstEntry();
/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentSkipListMap.java2184 public Map.Entry<K,V> firstEntry() { in firstEntry() method in ConcurrentSkipListMap
3004 public Map.Entry<K,V> firstEntry() { in firstEntry() method in ConcurrentSkipListMap.SubMap