Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/ir/code/
DBasicBlock.java1066 List<BasicBlock> catchSuccessors = appendCatchHandlers(fromBlock); in moveCatchHandlers() local
1067 for (BasicBlock successor : catchSuccessors) { in moveCatchHandlers()
1082 List<BasicBlock> catchSuccessors = appendCatchHandlers(fromBlock); in copyCatchHandlers() local
1094 for (BasicBlock catchSuccessor : catchSuccessors) { in copyCatchHandlers()
1182 List<BasicBlock> catchSuccessors = new ArrayList<>(); in appendCatchHandlers() local
1192 if (!catchSuccessors.contains(catchSuccessor)) { in appendCatchHandlers()
1193 catchSuccessors.add(catchSuccessor); in appendCatchHandlers()
1195 int index = catchSuccessors.indexOf(catchSuccessor); in appendCatchHandlers()
1201 int formerCatchHandlersCount = catchSuccessors.size(); in appendCatchHandlers()
1214 int index = catchSuccessors.indexOf(catchSuccessor); in appendCatchHandlers()
[all …]