Searched refs:next (Results 126 - 150 of 385) sorted by relevance

1234567891011>>

/dalvik/vm/mterp/armv5te/
H A DunopWide.S21 GOTO_OPCODE(ip) @ jump to next instruction
H A DunopWider.S20 GOTO_OPCODE(ip) @ jump to next instruction
H A Dzcmp.S21 GOTO_OPCODE(ip) @ jump to next instruction
/dalvik/libcore/luni/src/main/java/java/util/
H A DCollections.java117 public Object next() {
252 public E next() {
359 public Map.Entry<K, V> next() {
977 public E next() {
978 return iterator.next();
1107 public E next() {
1108 return iterator.next();
1227 public Map.Entry<K, V> next() {
1228 return new UnmodifiableMapEntry<K, V>(iterator.next());
1243 result[i] = it.next();
2867 public E next() { method in class:Collections.CheckedListIterator
3508 public Map.Entry<K, V> next() { method in class:Collections.CheckedMap.CheckedEntrySet.CheckedEntryIterator
[all...]
/dalvik/tools/dmtracedump/
H A DTraceDump.c134 struct TimedMethod *next; member in struct:TimedMethod
576 * Find the offset to the next occurrence of the specified character.
599 * Count the number of lines until the next token.
606 int next; local
609 next = findNextChar(data, len, '\n');
610 if (next < 0)
613 data += next+1;
614 len -= next+1;
628 int next; local
636 next
655 int i, count, next; local
710 int i, next, tab, count; local
764 int i, next, count; local
876 int next; local
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DCertPathValidatorUtilities.java133 found = (TrustAnchor) iter.next();
333 ASN1Sequence subtree = (ASN1Sequence) it.next();
357 ASN1Sequence subtree = (ASN1Sequence) it.next();
382 ASN1Sequence subtree = (ASN1Sequence) _iter.next();
413 ASN1Sequence subtree = (ASN1Sequence) _iter.next();
451 String _permitted = (String) _iter.next();
483 String _excluded = (String) _iter.next();
529 String str = (String) it.next();
554 String str = (String) it.next();
611 CertStore certStore = (CertStore)iter.next();
[all...]
/dalvik/libcore/sql/src/test/java/tests/java/sql/
H A DSelectFunctionalityTest.java81 while (userTab.next()) {
146 while (result.next()) {
215 while (result.next()) {
271 while (result.next()) {
314 while (result.next()) {
349 while (result.next()) {
384 while (result.next()) {
424 while (result.next()) {
457 while (result.next()) {
498 while (result.next()) {
[all...]
H A DUpdateFunctionalityTest.java75 while (userTab.next()) {
137 while (result.next()) {
176 while (result.next()) {
223 while (result.next()) {
268 while (result.next()) {
317 // while (result.next()) {
328 // while (result.next()) {
371 // while (result.next()) {
412 while (result.next()) {
458 while (result.next()) {
[all...]
H A DInsertFunctionalityTest.java67 while (userTab.next()) {
197 r.next();
229 r.next();
259 r.next();
287 r.next();
H A DUpdateFunctionalityTest2.java74 while (userTab.next()) {
234 r.next();
238 r.next();
298 r.next();
333 r.next();
362 while (r.next()) {
/dalvik/libcore/luni/src/main/java/java/lang/
H A DThreadLocal.java173 /** Points to the next cell to clean up. */
269 index = next(index)) {
273 continue; // on to next entry
289 // Point cursor to next index.
365 for (int index = key.hash & mask;; index = next(index)) {
386 for (int index = key.hash & mask;; index = next(index)) {
451 for (index = next(index);; index = next(index)) {
506 for (int index = key.hash & mask;; index = next(index)) {
526 * Gets the next inde
529 private int next(int index) { method in class:ThreadLocal.Values
[all...]
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DAbstractCollectionTest.java184 public String next() {
232 public String next() {
274 public String next() {
320 public String next() {
438 public Object next() {
472 public Object next() {
506 public Object next() {
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DScannerTest.java621 assertEquals("1", s.next());
622 assertEquals("2", s.next());
638 s.next();
722 s.next((Pattern)null);
739 * @tests java.util.Scanner#next()
744 method = "next",
750 assertEquals("1", s.next());
751 assertEquals("", s.next());
752 assertEquals("2", s.next());
755 assertEquals("1", s.next());
[all...]
H A DLinkedListTest.java478 assertTrue("Last element claimed to have next", !i2
481 elm = i2.next();
491 elm = i1.next();
498 assertTrue((Integer)i2.next() == ll.size()/2);
507 assertNull("li.next() should be null", li.next());
510 assertNull("li.next() should be null", li.next());
511 assertEquals("li.next() should be Blah", "Blah", li.next());
[all...]
/dalvik/vm/
H A DThread.c401 assert(gDvm.threadList->next == NULL);
599 target = target->next;
608 target = target->next;
618 nextTarget = target->next;
917 gDvm.threadList = thread->next;
920 thread->prev->next = thread->next;
922 if (thread->next != NULL)
923 thread->next->prev = thread->prev;
924 thread->prev = thread->next
[all...]
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DThreadPoolExecutor.java428 * next task in queue, or if there is none, the given task.
435 Runnable next = null;
440 next = workQueue.poll();
441 if (next == null)
442 next = firstTask;
443 t = addThread(next);
451 return next;
456 * Get the next task for a worker thread to run.
1132 Runnable r = it.next();
1149 * they next becom
[all...]
/dalvik/dx/src/com/android/dx/util/_tests/
H A D_BitIntSet.java61 assertEquals(iter.next(), 0);
63 assertEquals(iter.next(), 1);
65 assertEquals(iter.next(), 31);
70 iter.next();
115 assertEquals(values[i], iter.next());
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DNameConstraints.java141 GeneralName name = ((GeneralSubtree) it.next()).getBase();
155 GeneralName name = ((GeneralSubtree) it.next()).getBase();
242 GeneralName name = (GeneralName) it.next();
285 ((GeneralSubtree) it.next()).dumpValue(buffer, prefix + " "); //$NON-NLS-1$
293 ((GeneralSubtree) it.next()).dumpValue(buffer, prefix + " "); //$NON-NLS-1$
/dalvik/libcore/text/src/main/java/java/text/
H A DChoiceFormat.java42 * each item specifies a half-open interval up to the next item as in the
184 double next;
188 next = value.doubleValue();
191 next = nextDouble(value.doubleValue());
196 if (limitCount > 0 && next <= limits[limitCount - 1]) {
203 limits[limitCount++] = next;
341 * @return the next larger double value.
365 * {@code true} to get the next larger value, {@code false} to
367 * @return the next larger or smaller double value.
421 * @return the next smalle
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpConnectionManager.java111 List<HttpConnection> connections = iter.next();
113 HttpConnection connection = iterator.next();
171 List<HttpConnection> connections = iter.next();
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERInputStream.java53 int next = read();
55 if (next < 0)
60 length = (length << 8) + next;
/dalvik/vm/mterp/out/
H A DInterpAsm-armv4t.S108 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
113 * Fetch the next instruction from the specified offset. Advances rPC
114 * to point to the next instruction. "_count" is in 16-bit code units.
127 * Fetch the next instruction from an offset specified by _reg. Updates
128 * rPC to point to the next instruction. "_reg" must specify the distance
239 * and then looks at the next few instructions to figure out what
288 GOTO_OPCODE(ip) @ jump to next instruction
346 FETCH_ADVANCE_INST(1) @ advance to next instr, load rINST
374 GOTO_OPCODE(ip) @ execute next instruction
389 GOTO_OPCODE(ip) @ jump to next instructio
[all...]
H A DInterpAsm-armv5te.S108 * Fetch the next instruction from rPC into rINST. Does not advance rPC.
113 * Fetch the next instruction from the specified offset. Advances rPC
114 * to point to the next instruction. "_count" is in 16-bit code units.
127 * Fetch the next instruction from an offset specified by _reg. Updates
128 * rPC to point to the next instruction. "_reg" must specify the distance
239 * and then looks at the next few instructions to figure out what
288 GOTO_OPCODE(ip) @ jump to next instruction
346 FETCH_ADVANCE_INST(1) @ advance to next instr, load rINST
374 GOTO_OPCODE(ip) @ execute next instruction
389 GOTO_OPCODE(ip) @ jump to next instructio
[all...]
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotations.java114 Annotation thisOne = thisIter.next();
115 Annotation otherOne = otherIter.next();
/dalvik/dx/src/com/android/dx/util/
H A DBitIntSet.java89 add(iter.next());
110 public int next() {

Completed in 3136 milliseconds

1234567891011>>