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

1 2 3 4 5 6 7

  /dalvik/dx/src/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 26 private final int firstKey;
38 int opcode, int firstKey, int[] targets) {
41 this.firstKey = firstKey;
51 return firstKey;
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 26 private final int firstKey;
38 int opcode, int firstKey, int[] targets) {
41 this.firstKey = firstKey;
51 return firstKey;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
PackedSwitchMethodItem.java 44 private final int firstKey;
55 int firstKey = 0;
59 firstKey = switchElement.getKey();
70 firstKey = switchElement.getKey();
76 this.firstKey = firstKey;
82 IntegerRenderer.writeTo(writer, firstKey);
85 int key = firstKey;
  /libcore/luni/src/main/java/java/util/
SortedMap.java 39 public K firstKey();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedPackedSwitchPayload.java 60 final int firstKey = dexFile.readInt(instructionStart + FIRST_KEY_OFFSET);
68 return firstKey + index;
  /developers/samples/android/common/src/java/com/example/android/common/midi/
EventScheduler.java 159 : mEventBuffer.firstKey();
195 long lowestTime = mEventBuffer.firstKey();
221 long lowestTime = mEventBuffer.firstKey();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
SortedMapTestBase.java 155 int key = ref.tailMap((ref.firstKey() + ref.lastKey()) / 2)
156 .firstKey();
188 assertEquals(ref.firstKey(), map.firstKey());
229 int firstKey = ref.firstKey();
234 assertEquals(ref.get(firstKey), map.get(firstKey));
298 assertEquals(ref.firstKey(), map.firstKey());
    [all...]
RefSortedMap.java 115 bsearch(SubMap.this.firstKey()) - 1 :
154 int firstIdx = bsearch(SubMap.this.firstKey());
170 public K firstKey() {
172 K res = RefSortedMap.this.firstKey();
271 return tailMap(firstKey()).entrySet();
274 public K firstKey() {
283 return tailMap(firstKey()).keySet();
299 return tailMap(firstKey()).values();
TreeMapTest.java 113 assertTrue("TreeMap does not use comparator (firstKey was incorrect)",
114 reversedTreeMap.firstKey().equals(new Integer(2).toString()));
145 assertTrue("TreeMap does not use comparator (firstKey was incorrect)",
146 anotherTreeMap.firstKey().equals(new Integer(2).toString()));
209 assertTrue("TreeMap does not use comparator (firstKey was incorrect)",
210 reversedTreeMap.firstKey().equals(new Integer(2).toString()));
255 * java.util.TreeMap#firstKey()
258 // Test for method java.lang.Object java.util.TreeMap.firstKey()
259 assertEquals("Returned incorrect first key", "0", tm.firstKey());
360 sub.firstKey();
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingSortedMap.java 72 public K firstKey() {
73 return delegate().firstKey();
124 * firstKey()} method of {@link #tailMap}. If you override {@link #tailMap},
135 Object ceilingKey = self.tailMap(key).firstKey();
StandardRowSortedTable.java 108 public R firstKey() {
109 return sortedBackingMap().firstKey();
TreeBasedTable.java 232 @Override public C firstKey() {
237 return backingRowMap().firstKey();
  /frameworks/base/core/java/com/android/internal/midi/
EventScheduler.java 156 : mEventBuffer.firstKey();
191 long lowestTime = mEventBuffer.firstKey();
217 long lowestTime = mEventBuffer.firstKey();
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidTreeMapTest.java 66 if (SPEW) System.out.println("tm.firstKey() = " + tm.firstKey());
70 assertEquals(minVal, tm.firstKey().intValue());
OldTreeMapTest.java 98 assertTrue("TreeMap does not use comparator (firstKey was incorrect)",
99 reversedTreeMap.firstKey().equals(new Integer(2).toString()));
142 assertTrue("TreeMap does not use comparator (firstKey was incorrect)",
143 anotherTreeMap.firstKey().equals(new Integer(2).toString()));
177 // Test for method java.lang.Object java.util.TreeMap.firstKey()
178 assertEquals("Returned incorrect first key", "0", tm.firstKey());
181 tm.firstKey();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SortedMapNavigationTester.java 70 navigableMap.firstKey();
87 assertEquals(a.getKey(), navigableMap.firstKey());
97 assertEquals(a.getKey(), navigableMap.firstKey());
  /libcore/jsr166-tests/src/test/java/jsr166/
TreeSubMapTest.java 141 * firstKey returns first key
145 assertEquals(one, map.firstKey());
460 assertEquals(two, sm.firstKey());
481 assertEquals(three, sm.firstKey());
492 assertEquals(two, sm.firstKey());
538 assertEquals(four, map.firstKey());
581 assertEquals(four, ssm.firstKey());
651 * firstKey returns first key
655 assertEquals(m1, map.firstKey());
987 assertEquals(m2, sm.firstKey());
    [all...]
ConcurrentSkipListSubMapTest.java 142 * firstKey returns first key
146 assertEquals(one, map.firstKey());
625 assertEquals(two, sm.firstKey());
646 assertEquals(three, sm.firstKey());
657 assertEquals(two, sm.firstKey());
703 assertEquals(four, map.firstKey());
746 assertEquals(four, ssm.firstKey());
816 * firstKey returns first key
820 assertEquals(m1, map.firstKey());
    [all...]
ConcurrentSkipListMapTest.java 123 * firstKey returns first key
127 assertEquals(one, map.firstKey());
828 assertEquals(two, sm.firstKey());
856 assertEquals(three, sm.firstKey());
867 assertEquals(two, sm.firstKey());
918 assertEquals(four, map.firstKey());
971 assertEquals(four, ssm.firstKey());
    [all...]
TreeMapTest.java 122 * firstKey returns first key
126 assertEquals(one, map.firstKey());
633 assertEquals(two, sm.firstKey());
661 assertEquals(three, sm.firstKey());
672 assertEquals(two, sm.firstKey());
723 assertEquals(four, map.firstKey());
776 assertEquals(four, ssm.firstKey());
1062 assertEq(map.firstKey(), rs.first());
1068 map.firstKey();
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
CachedFrameManager.java 123 int oldest = mAvailableFrames.firstKey();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeMap.java 133 @Override public K firstKey() {
134 return delegate.firstKey();
  /frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/
Camera2UtilsTest.java 413 Key<T> firstKey,
419 assertEquals(expectedFirstSetFirstValue, firstSet.get(firstKey));
421 assertEquals(expectedSecondSetFirstValue, secondSet.get(firstKey));
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedMap.java 238 public K firstKey() {
239 return sortedDelegate.firstKey();
  /frameworks/base/media/java/android/media/
SubtitleTrack.java 477 return tail.firstKey();
546 mCurrentTimeMs = mRemainingCues.firstKey();

Completed in 1428 milliseconds

1 2 3 4 5 6 7