Searched refs: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.java134 * {@code non-null;} list of subroutines indexed by label of start
136 private final Subroutine[] subroutines; field in class:Ropper
138 /** true if {@code subroutines} is non-empty */
219 * Keeps track of subroutines that exist in java form and are inlined in
385 this.subroutines = new Subroutine[maxLabel];
584 * @param subroutines {@code non-null;} subroutine label list
587 private void addBlock(BasicBlock block, IntList subroutines) { argument
593 subroutines.throwIfMutable();
594 resultSubroutines.add(subroutines);
603 * @param subroutines {
608 addOrReplaceBlock(BasicBlock block, IntList subroutines) argument
646 addOrReplaceBlockNoDelete(BasicBlock block, IntList subroutines) argument
[all...]

Completed in 30 milliseconds