Searched refs:firstKey (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DSortedMap.java216 K firstKey(); method in interface:SortedMap
H A DTreeSet.java394 return m.firstKey();
H A DCollections.java1549 public K firstKey() {return sm.firstKey();} method in class:Collections.UnmodifiableSortedMap
2185 public K firstKey() { method in class:Collections.SynchronizedSortedMap
2186 synchronized (mutex) {return sm.firstKey();}
2957 public K firstKey() { return sm.firstKey(); } method in class:Collections.CheckedSortedMap
H A DTreeMap.java284 public K firstKey() { method in class:TreeMap
1051 public E first() { return m.firstKey(); }
1451 public final K firstKey() { method in class:TreeMap.NavigableSubMap
1871 public K firstKey() { throw new InternalError(); } method in class:TreeMap.SubMap
/openjdk7/jdk/test/java/util/TreeMap/
H A DSubMap.java27 * @summary The firstKey and lastKey
42 m2.firstKey();
59 if (!m3.firstKey().equals(new Integer(2)))
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadLocal.java324 * Construct a new map initially containing (firstKey, firstValue).
328 ThreadLocalMap(ThreadLocal firstKey, Object firstValue) { argument
330 int i = firstKey.threadLocalHashCode & (INITIAL_CAPACITY - 1);
331 table[i] = new Entry(firstKey, firstValue);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPropMap.java330 public Object firstKey() { method in class:PropMap
331 return theMap.firstKey();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListSet.java387 return m.firstKey();
H A DConcurrentSkipListMap.java1956 public K firstKey() { method in class:ConcurrentSkipListMap
2319 public E first() { return m.firstKey(); }
2935 public K firstKey() { method in class:ConcurrentSkipListMap.SubMap
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXToolkit.java1632 window = ((Long)(winMap.firstKey())).longValue();
1821 if (timeoutTasks.get(timeoutTasks.firstKey()) == tasks && tasks.size() == 1) {
1837 return (Long)timeoutTasks.firstKey();
1858 Long time = (Long)timeoutTasks.firstKey();
1883 time = (Long)timeoutTasks.firstKey();
/openjdk7/jdk/test/java/util/NavigableMap/
H A DLockStep.java351 new Fun(){void f(){ m.firstKey(); }},
366 Object a = m.firstKey();
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java2006 String firstKey = null;
2046 if (firstKey == null
2047 || firstKey.compareTo(key) > 0) {
2049 firstKey = key;
2056 // from this.attrs; such missing keys, if earlier than firstKey,
2065 // Search for a missing key in that.attrs earlier than firstKey.
2069 if (firstKey == null
2070 || firstKey.compareTo(otherKey) > 0) {

Completed in 1421 milliseconds