Searched refs:lastKey (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/test/java/util/TreeMap/
H A DNullAtEnd.java90 check(eq(m1.lastKey(), null));
91 check(eq(m1.get(m1.lastKey()), "d"));
92 check(eq(m1.remove(m1.lastKey()), "d"));
93 check(eq(m1.lastKey(), "c"));
99 check(eq(m3.lastKey(), null));
100 check(eq(m3.get(m3.lastKey()), "d"));
101 check(eq(m3.remove(m3.lastKey()), "d"));
102 check(eq(m3.lastKey(), "c"));
H A DSubMap.java27 * @summary The firstKey and lastKey
51 m2.lastKey();
61 if (!m3.lastKey().equals(new Integer(2)))
/openjdk7/jdk/src/share/classes/java/util/
H A DSortedMap.java224 K lastKey(); method in interface:SortedMap
H A DTreeSet.java401 return m.lastKey();
H A DCollections.java1550 public K lastKey() {return sm.lastKey();} method in class:Collections.UnmodifiableSortedMap
2188 public K lastKey() { method in class:Collections.SynchronizedSortedMap
2189 synchronized (mutex) {return sm.lastKey();}
2958 public K lastKey() { return sm.lastKey(); } method in class:Collections.CheckedSortedMap
H A DTreeMap.java291 public K lastKey() { method in class:TreeMap
1052 public E last() { return m.lastKey(); }
1455 public final K lastKey() { method in class:TreeMap.NavigableSubMap
1870 public K lastKey() { throw new InternalError(); } method in class:TreeMap.SubMap
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DARCFOURCipher.java61 private byte[] lastKey; field in class:ARCFOURCipher
99 init(lastKey);
186 lastKey = getEncodedKey(key);
187 init(lastKey);
H A DAESCrypt.java61 private byte[] lastKey = null; field in class:AESCrypt
91 if (!Arrays.equals(key, lastKey)) {
94 lastKey = key.clone(); // save cipher key
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPropMap.java335 public Object lastKey() { method in class:PropMap
336 return theMap.lastKey();
H A DDriver.java574 // pfxmap.lastKey is no shorter than any prefix in optmap.
575 int len = pfxmap.isEmpty() ? 0 : pfxmap.lastKey().length();
579 // pfxmap.lastKey, but that wouldn't save many cycles.)
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListSet.java394 return m.lastKey();
H A DConcurrentSkipListMap.java1966 public K lastKey() { method in class:ConcurrentSkipListMap
2320 public E last() { return m.lastKey(); }
2939 public K lastKey() { method in class:ConcurrentSkipListMap.SubMap
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DCommandLineParser.java121 // pfxmap.lastKey is no shorter than any prefix in optmap.
122 int len = pfxmap.isEmpty() ? 0 : pfxmap.lastKey().length();
126 // pfxmap.lastKey, but that wouldn't save many cycles.)
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DNumericShaper.java1301 Range lastKey = ctxKey;
1313 if (ctxKey != lastKey) {
1314 lastKey = ctxKey;
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DEnvHelp.java566 String sentinelKey = map.lastKey() + "X";
/openjdk7/jdk/test/java/util/NavigableMap/
H A DLockStep.java352 new Fun(){void f(){ m.lastKey(); }});
367 Object z = m.lastKey();

Completed in 4732 milliseconds