Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1355 code.addCatchClause(TypeId.get(IllegalArgumentException.class), catchIae); in testCatchExceptions()
1356 code.addCatchClause(TypeId.get(IllegalStateException.class), catchIse); in testCatchExceptions()
1357 code.addCatchClause(TypeId.get(RuntimeException.class), catchRe); in testCatchExceptions()
1434 code.addCatchClause(iaeType, catchOuter); in testNestedCatchClauses()
1441 code.addCatchClause(iaeType, catchInner); in testNestedCatchClauses()
1444 code.addCatchClause(iaeType, previousLabel); in testNestedCatchClauses()
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DCode.java363 public void addCatchClause(TypeId<? extends Throwable> toCatch, Label catchClause) { in addCatchClause() method in Code