Home
last modified time | relevance | path

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

/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DCode.java363 public void addCatchClause(TypeId<? extends Throwable> toCatch, Label catchClause) { in addCatchClause() argument
364 if (catchTypes.contains(toCatch)) { in addCatchClause()
365 throw new IllegalArgumentException("Already caught: " + toCatch); in addCatchClause()
368 catchTypes.add(toCatch); in addCatchClause()
376 public Label removeCatchClause(TypeId<? extends Throwable> toCatch) { in removeCatchClause() argument
377 int index = catchTypes.indexOf(toCatch); in removeCatchClause()
379 throw new IllegalArgumentException("No catch clause: " + toCatch); in removeCatchClause()