Searched refs:next (Results 1 - 25 of 258) sorted by relevance

1234567891011

/dalvik/dexgen/src/com/android/dexgen/util/
H A DIntIterator.java25 * Checks to see if the iterator has a next value.
27 * @return true if next() will succeed
32 * Returns the next value in the iterator.
34 * @return next value
35 * @throws java.util.NoSuchElementException if no next element exists
37 int next(); method in interface:IntIterator
/dalvik/dx/src/com/android/dx/util/
H A DIntIterator.java25 * Checks to see if the iterator has a next value.
27 * @return true if next() will succeed
32 * Returns the next value in the iterator.
34 * @return next value
35 * @throws java.util.NoSuchElementException if no next element exists
37 int next(); method in interface:IntIterator
/dalvik/vm/compiler/
H A DIntermediateRep.cpp37 mir->prev = mir->next = NULL;
39 bb->lastMIRInsn->next = mir;
41 mir->next = NULL;
52 mir->prev = mir->next = NULL;
55 mir->next = bb->firstMIRInsn;
65 newMIR->next = currentMIR->next;
66 currentMIR->next = newMIR;
68 if (newMIR->next) {
70 newMIR->next
[all...]
/dalvik/tests/080-oom-throw/src/
H A DMain.java35 InstanceMemEater next; field in class:Main.InstanceMemEater
60 lastMemEater.next = InstanceMemEater.allocate();
61 lastMemEater = lastMemEater.next;
/dalvik/vm/mterp/armv5te/
H A DOP_NOP.S2 FETCH_ADVANCE_INST(1) @ advance to next instr, load rINST
H A DOP_CONST_16.S8 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_MOVE_16.S10 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_MOVE_FROM16.S10 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_MOVE_RESULT.S9 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_ARRAY_LENGTH.S15 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_CONST.S10 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_CONST_4.S10 GOTO_OPCODE(ip) @ execute next instruction
H A DOP_CONST_HIGH16.S9 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_CONST_WIDE_16.S10 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_CONST_WIDE_32.S12 GOTO_OPCODE(ip) @ jump to next instruction
H A DOP_CONST_WIDE_HIGH16.S11 GOTO_OPCODE(ip) @ jump to next instruction
/dalvik/vm/mterp/mips/
H A DOP_NOP.S2 FETCH_ADVANCE_INST(1) # advance to next instr, load rINST
/dalvik/vm/compiler/codegen/
H A DRallocUtil.cpp199 int next = *nextTemp; local
201 if (next >= numTemps)
202 next = 0;
203 if (!p[next].inUse && !p[next].live) {
204 dvmCompilerClobber(cUnit, p[next].reg);
205 p[next].inUse = true;
206 p[next].pair = false;
207 *nextTemp = next + 1;
208 return p[next]
237 int next = cUnit->regPool->nextFPTemp; local
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DRallocUtil.cpp201 int next = *nextTemp; local
203 if (next >= numTemps)
204 next = 0;
205 if (!p[next].inUse && !p[next].live) {
206 dvmCompilerClobber(cUnit, p[next].reg);
207 p[next].inUse = true;
208 p[next].pair = false;
209 *nextTemp = next + 1;
210 return p[next]
241 int next = start; local
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DBasicBlocker.java228 * target and next instruction begin new blocks.)
231 // Fall through to next case...
234 int next = offset + length;
236 addWorkIfNecessary(next, true);
237 targetLists[offset] = IntList.makeImmutable(next, target);
276 for (int at = 0, next; /*at*/; at = next) {
277 next = Bits.findFirst(blockSet, at + 1);
278 if (next < 0) {
286 * there isn't any, then "next" i
[all...]
/dalvik/vm/mterp/arm-vfp/
H A Dfbinop2addr.S21 GOTO_OPCODE(ip) @ jump to next instruction
H A DfbinopWide2addr.S22 GOTO_OPCODE(ip) @ jump to next instruction
H A Dfunop.S18 GOTO_OPCODE(ip) @ jump to next instruction
H A DfunopNarrower.S18 GOTO_OPCODE(ip) @ jump to next instruction
H A DfunopWider.S18 GOTO_OPCODE(ip) @ jump to next instruction

Completed in 301 milliseconds

1234567891011