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

/libcore/ojluni/src/main/java/java/util/
H A DSortedMap.java216 K firstKey(); method in interface:SortedMap
H A DTreeMap.java290 public K firstKey() { method in class:TreeMap
1144 public E first() { return m.firstKey(); }
1566 public final K firstKey() { method in class:TreeMap.NavigableSubMap
2057 public K firstKey() { throw new InternalError(); } method in class:TreeMap.SubMap
H A DCollections.java1850 public K firstKey() { return sm.firstKey(); } method in class:Collections.UnmodifiableSortedMap
2828 public K firstKey() { method in class:Collections.SynchronizedSortedMap
2829 synchronized (mutex) {return sm.firstKey();}
4020 public K firstKey() { return sm.firstKey(); } method in class:Collections.CheckedSortedMap
4094 public K firstKey() { return nm.firstKey(); } method in class:Collections.CheckedNavigableMap
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DRefSortedMap.java115 bsearch(SubMap.this.firstKey()) - 1 :
154 int firstIdx = bsearch(SubMap.this.firstKey());
170 public K firstKey() { method in class:RefSortedMap.SubMap
172 K res = RefSortedMap.this.firstKey();
271 return tailMap(firstKey()).entrySet();
274 public K firstKey() { method in class:RefSortedMap
283 return tailMap(firstKey()).keySet();
299 return tailMap(firstKey()).values();
/libcore/ojluni/src/main/java/java/lang/
H A DThreadLocal.java361 * Construct a new map initially containing (firstKey, firstValue).
365 ThreadLocalMap(ThreadLocal<?> firstKey, Object firstValue) { argument
367 int i = firstKey.threadLocalHashCode & (INITIAL_CAPACITY - 1);
368 table[i] = new Entry(firstKey, firstValue);
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java2028 public K firstKey() { method in class:ConcurrentSkipListMap
2373 public K first() { return m.firstKey(); }
3025 public K firstKey() { method in class:ConcurrentSkipListMap.SubMap

Completed in 90 milliseconds