Home
last modified time | relevance | path

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

/dalvik/dexgen/src/com/android/dexgen/rop/
DByteCatchList.java89 CstType exceptionClass) { in set() argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass)); in set()
235 private final CstType exceptionClass; field in ByteCatchList.Item
249 CstType exceptionClass) { in Item() argument
265 this.exceptionClass = exceptionClass; in Item()
303 return (exceptionClass != null) ? in getExceptionClass()
304 exceptionClass : CstType.OBJECT; in getExceptionClass()
/dalvik/dx/src/com/android/dx/cf/code/
DByteCatchList.java89 CstType exceptionClass) { in set() argument
90 set0(n, new Item(startPc, endPc, handlerPc, exceptionClass)); in set()
235 private final CstType exceptionClass; field in ByteCatchList.Item
249 CstType exceptionClass) { in Item() argument
265 this.exceptionClass = exceptionClass; in Item()
303 return (exceptionClass != null) ? in getExceptionClass()
304 exceptionClass : CstType.OBJECT; in getExceptionClass()
DFrame.java396 public Frame makeExceptionHandlerStartFrame(CstType exceptionClass) { in makeExceptionHandlerStartFrame() argument
400 newStack.push(exceptionClass); in makeExceptionHandlerStartFrame()
DRopper.java913 CstType exceptionClass = one.getExceptionClass(); in processBlock() local
916 catchesAny |= (exceptionClass == CstType.OBJECT); in processBlock()
918 Frame f = frame.makeExceptionHandlerStartFrame(exceptionClass); in processBlock()
937 ExceptionHandlerSetup handler = handlers.getSetup(exceptionClass.getClassType()); in processBlock()
/dalvik/dx/src/com/android/dx/command/dump/
DBlockDumper.java252 CstType exceptionClass = one.getExceptionClass(); in regularDump() local
255 ((exceptionClass == CstType.OBJECT) ? "<any>" : in regularDump()
256 exceptionClass.toHuman()) + " -> " + in regularDump()