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

/dalvik/dx/src/com/android/dx/cf/code/
H A DRopper.java158 * @param caughtType {@code non-null;} the type catch by the requested setup
161 ExceptionHandlerSetup getSetup(Type caughtType) { argument
162 ExceptionHandlerSetup handler = setups.get(caughtType);
165 handler = new ExceptionHandlerSetup(caughtType, handlerSetupLabel);
166 setups.put(caughtType, handler);
187 private Type caughtType; field in class:Ropper.ExceptionHandlerSetup
195 * @param caughtType {@code non-null;} the caught type
198 ExceptionHandlerSetup(Type caughtType, int label) { argument
199 this.caughtType = caughtType;
[all...]

Completed in 14 milliseconds