Searched defs:firstLabel (Results 1 - 3 of 3) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRopMethod.java31 private final int firstLabel; field in class:RopMethod
49 * @param firstLabel {@code >= 0;} the label of the first block to execute
51 public RopMethod(BasicBlockList blocks, int firstLabel) { argument
56 if (firstLabel < 0) {
57 throw new IllegalArgumentException("firstLabel < 0");
61 this.firstLabel = firstLabel;
83 return firstLabel;
131 firstLabel);
200 if (predecessors[firstLabel]
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DRopMethod.java30 private final int firstLabel; field in class:RopMethod
48 * @param firstLabel {@code >= 0;} the label of the first block to execute
50 public RopMethod(BasicBlockList blocks, int firstLabel) { argument
55 if (firstLabel < 0) {
56 throw new IllegalArgumentException("firstLabel < 0");
60 this.firstLabel = firstLabel;
82 return firstLabel;
130 firstLabel);
199 if (predecessors[firstLabel]
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopper.java1753 * @param firstLabel label of start block
1756 private void forEachNonSubBlockDepthFirst(int firstLabel, argument
1758 forEachNonSubBlockDepthFirst0(labelToBlock(firstLabel),

Completed in 1631 milliseconds