/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
D | MethodImplementationBuilder.java | 106 public void addCatch(@Nullable TypeReference type, @Nonnull Label from, in addCatch() method in MethodImplementationBuilder 108 impl.addCatch(type, from, to, handler); in addCatch() 111 public void addCatch(@Nullable String type, @Nonnull Label from, @Nonnull Label to, in addCatch() method in MethodImplementationBuilder 113 impl.addCatch(type, from, to, handler); in addCatch() 116 public void addCatch(@Nonnull Label from, @Nonnull Label to, @Nonnull Label handler) { in addCatch() method in MethodImplementationBuilder 117 impl.addCatch(from, to, handler); in addCatch()
|
D | MutableMethodImplementation.java | 189 public void addCatch(@Nullable TypeReference type, @Nonnull Label from, 194 public void addCatch(@Nullable String type, @Nonnull Label from, @Nonnull Label to, 199 public void addCatch(@Nonnull Label from, @Nonnull Label to, @Nonnull Label handler) {
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/builder/ |
D | MutableMethodImplementationTest.java | 56 builder.addCatch(startLabel, endLabel, startLabel); in testTryEndAtEndOfMethod() 83 mutableMethodImplementation.addCatch( in testNewLabelByAddress() 108 mutableMethodImplementation.addCatch( in testNewLabelByIndex()
|
D | FixOffsetsTest.java | 97 builder.addCatch(tryStart, tryEnd, handler); in testFixOffsets()
|
/external/javassist/src/main/javassist/ |
D | CtBehavior.java | 1083 public void addCatch(String src, CtClass exceptionType) in addCatch() method in CtBehavior 1086 addCatch(src, exceptionType, "$e"); in addCatch() 1101 public void addCatch(String src, CtClass exceptionType, in addCatch() method in CtBehavior
|
/external/javassist/src/main/javassist/bytecode/ |
D | ClassFileWriter.java | 465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) { in addCatch() method in ClassFileWriter.MethodWriter
|
/external/javassist/src/test/javassist/ |
D | JvstTest4.java | 210 mw.addCatch(0, 4, 6, cpw.addClassInfo("java/lang/Exception")); in testClassFileWriter() 211 mw.addCatch(0, 4, 6, cpw.addClassInfo("java/lang/Throwable")); in testClassFileWriter()
|
D | JvstTest2.java | 720 m1.addCatch("return;", sloader.get("java.lang.Exception")); in testAddCatchForConstructor()
|
D | JvstTest.java | 279 m1.addCatch("{ System.out.println($e); return p; }", in testCalleeCatch()
|
/external/smali/smali/src/main/antlr/ |
D | smaliTreeWalker.g | 592 $method::methodBuilder.addCatch(dexBuilder.internTypeReference($nonvoid_type_descriptor.type), 599 $method::methodBuilder.addCatch($from.label, $to.label, $using.label);
|
/external/smali/smali/src/main/java/org/jf/smali/ |
D | smaliTreeWalker.java | 3233 …method_stack.peek().methodBuilder.addCatch(dexBuilder.internTypeReference((nonvoid_type_descriptor… in catch_directive() 3279 method_stack.peek().methodBuilder.addCatch(from, to, using); in catchall_directive()
|