Home
last modified time | relevance | path

Searched refs:addCatch (Results 1 – 8 of 8) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMethodImplementationBuilder.java106 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()
DMutableMethodImplementation.java189 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/
DMutableMethodImplementationTest.java56 builder.addCatch(startLabel, endLabel, startLabel); in testTryEndAtEndOfMethod()
83 mutableMethodImplementation.addCatch( in testNewLabelByAddress()
108 mutableMethodImplementation.addCatch( in testNewLabelByIndex()
DFixOffsetsTest.java97 builder.addCatch(tryStart, tryEnd, handler); in testFixOffsets()
/external/javassist/src/main/javassist/
DCtBehavior.java984 public void addCatch(String src, CtClass exceptionType) in addCatch() method in CtBehavior
987 addCatch(src, exceptionType, "$e"); in addCatch()
1002 public void addCatch(String src, CtClass exceptionType, in addCatch() method in CtBehavior
/external/javassist/src/main/javassist/bytecode/
DClassFileWriter.java465 public void addCatch(int startPc, int endPc, int handlerPc, int catchType) { in addCatch() method in ClassFileWriter.MethodWriter
/external/smali/smali/src/main/antlr/
DsmaliTreeWalker.g552 $method::methodBuilder.addCatch(dexBuilder.internTypeReference($nonvoid_type_descriptor.type),
559 $method::methodBuilder.addCatch($from.label, $to.label, $using.label);
/external/smali/smali/src/main/java/org/jf/smali/
DsmaliTreeWalker.java2793 …method_stack.peek().methodBuilder.addCatch(dexBuilder.internTypeReference((nonvoid_type_descriptor… in catch_directive()
2839 method_stack.peek().methodBuilder.addCatch(from, to, using); in catchall_directive()