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

/external/dexmaker/src/main/java/com/google/dexmaker/
H A DLabel.java39 List<Label> catchLabels = Collections.emptyList(); field in class:Label
56 for (int i = 0; i < catchLabels.size(); i++) {
57 while (catchLabels.get(i).isEmpty()) {
58 catchLabels.set(i, catchLabels.get(i).primarySuccessor);
78 for (Label catchLabel : catchLabels) {
H A DCode.java205 private final List<Label> catchLabels = new ArrayList<Label>(); field in class:Code
368 catchLabels.add(catchClause);
381 return catchLabels.remove(index);
447 splitCurrentLabel(null, new ArrayList<Label>(catchLabels));
458 * @param catchLabels an immutable list of catch labels
460 private void splitCurrentLabel(Label alternateSuccessor, List<Label> catchLabels) { argument
465 currentLabel.catchLabels = catchLabels;

Completed in 449 milliseconds