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

1 2 3 4 5 6 7 8 91011

  /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 45 private final int firstKey;
58 int firstKey = 0;
62 firstKey = switchElement.getKey();
74 firstKey = switchElement.getKey();
80 this.firstKey = firstKey;
89 IntegerRenderer.writeTo(writer, firstKey);
92 int key = firstKey;
  /libcore/ojluni/src/main/java/java/util/
SortedMap.java 216 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/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/
EventScheduler.java 159 : mEventBuffer.firstKey();
195 long lowestTime = mEventBuffer.firstKey();
221 long lowestTime = mEventBuffer.firstKey();
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/
EventScheduler.java 159 : mEventBuffer.firstKey();
195 long lowestTime = mEventBuffer.firstKey();
221 long lowestTime = mEventBuffer.firstKey();
  /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();
  /development/samples/browseable/MidiScope/src/com.example.android.common.midi/
EventScheduler.java 159 : mEventBuffer.firstKey();
195 long lowestTime = mEventBuffer.firstKey();
221 long lowestTime = mEventBuffer.firstKey();
  /development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
EventScheduler.java 159 : mEventBuffer.firstKey();
195 long lowestTime = mEventBuffer.firstKey();
221 long lowestTime = mEventBuffer.firstKey();
  /external/guava/guava/src/com/google/common/collect/
ForwardingSortedMap.java 71 public K firstKey() {
72 return delegate().firstKey();
123 * firstKey()} method of {@link #tailMap}. If you override {@link #tailMap},
134 Object ceilingKey = self.tailMap(key).firstKey();
StandardRowSortedTable.java 108 public R firstKey() {
109 return sortedBackingMap().firstKey();
AbstractNavigableMap.java 66 public K 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();
  /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...]
  /libcore/ojluni/src/main/java/java/lang/
ThreadLocal.java 324 * Construct a new map initially containing (firstKey, firstValue).
328 ThreadLocalMap(ThreadLocal firstKey, Object firstValue) {
330 int i = firstKey.threadLocalHashCode & (INITIAL_CAPACITY - 1);
331 table[i] = new Entry(firstKey, firstValue);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
CachedFrameManager.java 123 int oldest = mAvailableFrames.firstKey();
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
CustomPrinterIconCache.java 129 sortedFiles.remove(sortedFiles.firstKey());
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedNavigableMapTest.java 215 @Override public K firstKey() {
217 return delegate().firstKey();
292 map.firstKey();

Completed in 379 milliseconds

1 2 3 4 5 6 7 8 91011