Searched defs:toCatch (Results 1 - 2 of 2) sorted by relevance

/external/javassist/src/main/javassist/bytecode/stackmap/
H A DBasicBlock.java33 public Catch toCatch; field in class:BasicBlock
85 Catch th = toCatch;
391 bb.toCatch = new Catch(handler, type, bb.toCatch);
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java355 * in this frame that throw a class assignable to {@code toCatch}. This
361 public void addCatchClause(TypeId<? extends Throwable> toCatch, Label catchClause) { argument
362 if (catchTypes.contains(toCatch)) {
363 throw new IllegalArgumentException("Already caught: " + toCatch);
366 catchTypes.add(toCatch);
372 * Deregisters the catch clause label for {@code toCatch} and returns it.
374 public Label removeCatchClause(TypeId<? extends Throwable> toCatch) { argument
375 int index = catchTypes.indexOf(toCatch);
377 throw new IllegalArgumentException("No catch clause: " + toCatch);

Completed in 43 milliseconds