HomeSort by relevance Sort by last modified time
    Searched refs:lastKey (Results 1 - 25 of 25) sorted by null

  /external/guava/src/com/google/common/collect/
ForwardingSortedMap.java 52 public K lastKey() {
53 return delegate().lastKey();
TreeMultiset.java 160 return sortedMap().lastKey();
AbstractMultimap.java 928 return sortedMap().lastKey();
    [all...]
ImmutableSortedMap.java 595 public K lastKey() {
  /libcore/luni/src/main/java/java/util/
SortedMap.java 73 public K lastKey();
TreeSet.java 272 return backingMap.lastKey();
Collections.java 879 public K lastKey() {
881 return sm.lastKey();
    [all...]
TreeMap.java 628 public K lastKey() {
997 return lastKey();
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSDataExtras.m 315 NSString *lastKey = nil;
336 if (!lastKey) {
342 NSString *currentValue = [headerFields objectForKey:lastKey];
347 [headerFields setObject:(NSString *)mergedValue forKey:lastKey];
364 lastKey = (NSString *)CFMakeCollectable(CFStringCreateWithBytes(NULL, line, colon - line, kCFStringEncodingISOLatin1, FALSE));
365 [lastKey autorelease];
366 NSString *value = [lastKey _web_capitalizeRFC822HeaderFieldName];
367 lastKey = value;
381 NSString *oldValue = [headerFields objectForKey:lastKey];
387 [headerFields setObject:(NSString *)value forKey:lastKey];
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceRandom.java 467 int lastKey = 0;
484 lastKey = NAV_KEYS[mRandom.nextInt(NAV_KEYS.length)];
486 lastKey = MAJOR_NAV_KEYS[mRandom.nextInt(MAJOR_NAV_KEYS.length)];
488 lastKey = SYS_KEYS[mRandom.nextInt(SYS_KEYS.length)];
500 lastKey = 1 + mRandom.nextInt(KeyEvent.getMaxKeyCode() - 1);
502 } while (!PHYSICAL_KEY_EXISTS[lastKey]);
504 MonkeyKeyEvent e = new MonkeyKeyEvent(KeyEvent.ACTION_DOWN, lastKey);
507 e = new MonkeyKeyEvent(KeyEvent.ACTION_UP, lastKey);
  /frameworks/base/tests/CoreTests/android/core/
TreeMapTest.java 70 if (SPEW) System.out.println("tm.lastKey() = " + tm.lastKey());
73 assertEquals(maxVal, tm.lastKey().intValue());
  /dalvik/vm/analysis/
VerifySubs.c 245 s4 lastKey;
247 lastKey = switchInsns[offsetToKeys] |
252 if (key <= lastKey) {
255 lastKey, key);
259 lastKey = key;
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeMapTest.java 122 assertTrue("TreeMap does not use comparator (lastKey was incorrect)",
123 reversedTreeMap.lastKey().equals(new Integer(1).toString()));
184 assertTrue("TreeMap does not use comparator (lastKey was incorrect)",
185 anotherTreeMap.lastKey().equals(new Integer(1).toString()));
366 * @tests java.util.TreeMap#lastKey()
371 method = "lastKey",
375 // Test for method java.lang.Object java.util.TreeMap.lastKey()
376 assertTrue("Returned incorrect last key", tm.lastKey().equals(
380 tm.lastKey();
531 // Regression test for typo in lastKey metho
    [all...]
  /external/stlport/test/unit/
hash_test.cpp 220 int lastKey = -1;
224 if (mIter->first != lastKey) {
226 lastKey = mIter->first;
233 assert (h->first == lastKey);
  /ndk/sources/android/stlport/test/unit/
hash_test.cpp 220 int lastKey = -1;
224 if (mIter->first != lastKey) {
226 lastKey = mIter->first;
233 assert (h->first == lastKey);
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ConcurrentSkipListSubMapTest.java 136 * lastKey returns last key
140 assertEquals(five, map.lastKey());
624 assertEquals(three, sm.lastKey());
645 assertEquals(three, sm.lastKey());
656 assertEquals(two, sm.lastKey());
745 assertEquals(five, ssm.lastKey());
823 * lastKey returns last key
827 assertEquals(m5, map.lastKey());
    [all...]
ConcurrentSkipListMapTest.java 114 * lastKey returns last key
118 assertEquals(five, map.lastKey());
825 assertEquals(three, sm.lastKey());
853 assertEquals(three, sm.lastKey());
864 assertEquals(two, sm.lastKey());
968 assertEquals(five, ssm.lastKey());
    [all...]
  /external/webkit/WebCore/plugins/
PluginView.cpp     [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListSet.java 374 return m.lastKey();
ConcurrentSkipListMap.java     [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 682 milliseconds