Home
last modified time | relevance | path

Searched refs:catchLabels (Results 1 – 2 of 2) sorted by relevance

/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DLabel.java39 List<Label> catchLabels = Collections.emptyList(); field in Label
56 for (int i = 0; i < catchLabels.size(); i++) { in compact()
57 while (catchLabels.get(i).isEmpty()) { in compact()
58 catchLabels.set(i, catchLabels.get(i).primarySuccessor); in compact()
78 for (Label catchLabel : catchLabels) { in toBasicBlock()
DCode.java207 private final List<Label> catchLabels = new ArrayList<Label>(); field in Code
370 catchLabels.add(catchClause); in addCatchClause()
383 return catchLabels.remove(index); in removeCatchClause()
449 splitCurrentLabel(null, new ArrayList<Label>(catchLabels)); in addInstruction()
462 private void splitCurrentLabel(Label alternateSuccessor, List<Label> catchLabels) { in splitCurrentLabel() argument
467 currentLabel.catchLabels = catchLabels; in splitCurrentLabel()