Home
last modified time | relevance | path

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

/external/ow2-asm/asm/src/test/java/org/objectweb/asm/
DHandlerTest.java46 int catchType = 123; in testConstructor() local
49 Handler handler = new Handler(startPc, endPc, handlerPc, catchType, catchDescriptor); in testConstructor()
54 assertEquals(catchType, handler.catchType); in testConstructor()
63 int catchType = 123; in testCopyConstructor() local
65 Handler handler1 = new Handler(startPc1, endPc1, handlerPc, catchType, catchDescriptor); in testCopyConstructor()
74 assertEquals(catchType, handler2.catchType); in testCopyConstructor()
/external/ow2-asm/asm/src/main/java/org/objectweb/asm/
DHandler.java64 final int catchType; field in Handler
89 final int catchType, in Handler() argument
94 this.catchType = catchType; in Handler()
106 this(startPc, endPc, handler.handlerPc, handler.catchType, handler.catchTypeDescriptor); in Handler()
194 .putShort(handler.catchType); in putExceptionTable()
DMethodWriter.java1565 int catchType = Frame.getAbstractTypeFromInternalName(symbolTable, catchTypeDescriptor); in computeAllFrames() local
1574 new Edge(catchType, handlerBlock, handlerRangeBlock.outgoingEdges); in computeAllFrames()
DClassReader.java1855 String catchType = readUTF8(cpInfoOffsets[readUnsignedShort(currentOffset + 6)], charBuffer); in readCode() local
1857 methodVisitor.visitTryCatchBlock(start, end, handler, catchType); in readCode()
/external/javassist/src/main/javassist/bytecode/
DExceptionTable.java30 int catchType; field in ExceptionTableEntry
36 catchType = type; in ExceptionTableEntry()
156 public int catchType(int nth) { in catchType() method in ExceptionTable
157 return entries.get(nth).catchType; in catchType()
167 entries.get(nth).catchType = value; in setCatchType()
182 e.handlerPc + offset, e.catchType); in add()
236 int type = srcCp.copy(e.catchType, newCp, classnames); in copy()
265 out.writeShort(e.catchType); in write()
DClassFileWriter.java465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) { in addCatch() argument
470 output.writeShort(catchType); in addCatch()
/external/proguard/src/proguard/classfile/visitor/
DExceptionHandlerConstantVisitor.java56 int catchType = exceptionInfo.u2catchType; in visitExceptionInfo() local
57 if (catchType != 0) in visitExceptionInfo()
59 clazz.constantPoolEntryAccept(catchType, constantVisitor); in visitExceptionInfo()
/external/cronet/buildtools/third_party/libc++abi/trunk/src/
Dcxa_personality.cpp469 const __shim_type_info* catchType = in exception_spec_can_catch() local
472 if (catchType->can_catch(excpType, tempPtr)) in exception_spec_can_catch()
501 const __shim_type_info* catchType = get_shim_type_info(ttypeIndex, in exception_spec_can_catch() local
508 if (catchType->can_catch(excpType, tempPtr)) in exception_spec_can_catch()
738 const __shim_type_info* catchType = in scan_eh_tab() local
743 if (catchType == 0) in scan_eh_tab()
770 if (catchType->can_catch(excpType, adjustedPtr)) in scan_eh_tab()
Daix_state_tab_eh.inc615 …__cxxabiv1::__shim_type_info* catchType = reinterpret_cast<__cxxabiv1::__shim_type_info*>(catchTyp…
619 … throwType->name(), reinterpret_cast<void*>(catchType), catchType->name());
620 if (catchType->can_catch(throwType, thrownObject)) {
/external/libcxxabi/src/
Dcxa_personality.cpp454 const __shim_type_info* catchType = in exception_spec_can_catch() local
457 if (catchType->can_catch(excpType, tempPtr)) in exception_spec_can_catch()
485 const __shim_type_info* catchType = get_shim_type_info(ttypeIndex, in exception_spec_can_catch() local
491 if (catchType->can_catch(excpType, tempPtr)) in exception_spec_can_catch()
718 const __shim_type_info* catchType = in scan_eh_tab() local
722 if (catchType == 0) in scan_eh_tab()
759 if (catchType->can_catch(excpType, adjustedPtr)) in scan_eh_tab()
/external/javassist/src/main/javassist/expr/
DHandler.java90 int type = etable.catchType(index); in getType()
102 return etable.catchType(index) == 0; in isFinally()
DExpr.java143 int t = et.catchType(i); in mayThrow()
/external/ow2-asm/asm-util/src/main/java/org/objectweb/asm/util/
DCheckFrameAnalyzer.java190 Type catchType; in init() local
192 catchType = Type.getObjectType("java/lang/Throwable"); in init()
194 catchType = Type.getObjectType(tryCatchBlock.type); in init()
198 handler.push(interpreter.newExceptionValue(tryCatchBlock, handler, catchType)); in init()
/external/proguard/src/proguard/preverify/
DCodeSubroutineInliner.java351 int catchType = exceptionInfo.u2catchType; in visitExceptionInfo() local
374 catchType)); in visitExceptionInfo()
400 catchType)); in visitExceptionInfo()
/external/ow2-asm/asm-analysis/src/main/java/org/objectweb/asm/tree/analysis/
DAnalyzer.java253 Type catchType; in analyze() local
255 catchType = Type.getObjectType("java/lang/Throwable"); in analyze()
257 catchType = Type.getObjectType(tryCatchBlock.type); in analyze()
262 handler.push(interpreter.newExceptionValue(tryCatchBlock, handler, catchType)); in analyze()
/external/proguard/src/proguard/optimize/evaluation/
DPartialEvaluator.java1039 int catchType = exceptionInfo.u2catchType; in visitExceptionInfo() local
1063 String catchClassName = catchType != 0 ? in visitExceptionInfo()
1064 clazz.getClassName(catchType) : in visitExceptionInfo()
1067 Clazz catchClass = catchType != 0 ? in visitExceptionInfo()
1068 ((ClassConstant)((ProgramClass)clazz).getConstant(catchType)).referencedClass : in visitExceptionInfo()
/external/javassist/src/main/javassist/bytecode/analysis/
DAnalyzer.java218 int index = table.catchType(i); in buildExceptionInfo()
/external/javassist/src/main/javassist/bytecode/stackmap/
DBasicBlock.java405 int type = et.catchType(i); in addCatchers()
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
DLexicalPreservingPrinterTest.java492 Type catchType = catchClause.getParameter().getType(); in printASingleCatchType() local
494 assertEquals("Exception", LexicalPreservingPrinter.print(catchType)); in printASingleCatchType()
/external/oj-libjdwp/src/share/javavm/export/
Djvm.h778 jint catchType; member
/external/javaparser/javaparser-core/src/main/javacc/
Djava.jj2487 …Parameter catchType = new Parameter(range(typesBegin, paramEnd), exceptModifier.modifiers, exceptM…
2488 catchs = add(catchs, new CatchClause(range(catchBegin, token()), catchType, catchBlock));
/external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/
DGeneratedJavaParser.java4931 …Parameter catchType = new Parameter(range(typesBegin, paramEnd), exceptModifier.modifiers, exceptM… in TryStatement() local
4932 … catchs = add(catchs, new CatchClause(range(catchBegin, token()), catchType, catchBlock)); in TryStatement()