Searched defs:subroutines (Results 1 - 2 of 2) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/code/
H A DFrame.java38 /** {@code null-ok;} stack of labels of subroutines that this block is nested in */
39 private final IntList subroutines; field in class:Frame
56 * @param subroutines {@code non-null;} list of subroutine start labels for
57 * subroutines this frame is nested in
60 ExecutionStack stack, IntList subroutines) {
69 subroutines.throwIfMutable();
73 this.subroutines = subroutines;
98 return new Frame(locals.copy(), stack.copy(), subroutines);
107 // "subroutines" i
59 Frame(LocalsArray locals, ExecutionStack stack, IntList subroutines) argument
273 adjustLocalsForSubroutines( LocalsArray locals, IntList subroutines) argument
[all...]
H A DRopper.java116 * {@code non-null;} list of subroutines indexed by label of start
118 private final Subroutine[] subroutines; field in class:Ropper
120 /** true if {@code subroutines} is non-empty */
124 * Keeps track of subroutines that exist in java form and are inlined in
284 this.subroutines = new Subroutine[maxLabel];
479 * @param subroutines {@code non-null;} subroutine label list
482 private void addBlock(BasicBlock block, IntList subroutines) { argument
488 subroutines.throwIfMutable();
489 resultSubroutines.add(subroutines);
498 * @param subroutines {
503 addOrReplaceBlock(BasicBlock block, IntList subroutines) argument
541 addOrReplaceBlockNoDelete(BasicBlock block, IntList subroutines) argument
[all...]

Completed in 478 milliseconds