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.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/cf/code/
H A DRopper.java1628 * @param firstLabel label of start block
1631 private void forEachNonSubBlockDepthFirst(int firstLabel, argument
1633 forEachNonSubBlockDepthFirst0(labelToBlock(firstLabel),

Completed in 5164 milliseconds