HomeSort by relevance Sort by last modified time
    Searched full:exceptioninfovisitor (Results 1 - 25 of 27) sorted by null

1 2

  /external/proguard/src/proguard/classfile/visitor/
ExceptionExcludedOffsetFilter.java 25 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
28 * This <code>ExceptionInfoVisitor</code> delegates its visits to another given
29 * <code>ExceptionInfoVisitor</code>, but only when the visited exception
35 implements ExceptionInfoVisitor
38 private final ExceptionInfoVisitor exceptionInfoVisitor;
44 * @param exceptionInfoVisitor the ExceptionInfoVisitor to which visits
48 ExceptionInfoVisitor exceptionInfoVisitor)
    [all...]
ExceptionHandlerFilter.java 25 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
28 * This <code>ExceptionInfoVisitor</code> delegates its visits to another given
29 * <code>ExceptionInfoVisitor</code>, but only when the visited exception
35 implements ExceptionInfoVisitor
39 private final ExceptionInfoVisitor exceptionInfoVisitor;
46 * @param exceptionInfoVisitor the ExceptionInfoVisitor to which visits
51 ExceptionInfoVisitor exceptionInfoVisitor)
    [all...]
ExceptionOffsetFilter.java 25 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
28 * This <code>ExceptionInfoVisitor</code> delegates its visits to another given
29 * <code>ExceptionInfoVisitor</code>, but only when the visited exception
35 implements ExceptionInfoVisitor
38 private final ExceptionInfoVisitor exceptionInfoVisitor;
44 * @param exceptionInfoVisitor the ExceptionInfoVisitor to which visits
48 ExceptionInfoVisitor exceptionInfoVisitor)
    [all...]
ExceptionRangeFilter.java 25 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
28 * This <code>ExceptionInfoVisitor</code> delegates its visits to another given
29 * <code>ExceptionInfoVisitor</code>, but only when the visited exception
35 implements ExceptionInfoVisitor
39 private final ExceptionInfoVisitor exceptionInfoVisitor;
46 * @param exceptionInfoVisitor the ExceptionInfoVisitor to which visits
51 ExceptionInfoVisitor exceptionInfoVisitor)
    [all...]
ExceptionCounter.java 25 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
28 * This ExceptionInfoVisitor counts the number of exceptions that has been visited.
32 public class ExceptionCounter implements ExceptionInfoVisitor
46 // Implementations for ExceptionInfoVisitor.
ExceptionHandlerConstantVisitor.java 26 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
29 * This <code>ExceptionInfoVisitor</code> lets a given
36 implements ExceptionInfoVisitor
52 // Implementations for ExceptionInfoVisitor.
ClassCleaner.java 46 ExceptionInfoVisitor,
182 // Implementations for ExceptionInfoVisitor.
ClassPrinter.java 51 ExceptionInfoVisitor,
674 // Implementations for ExceptionInfoVisitor.
    [all...]
  /external/proguard/src/proguard/classfile/attribute/visitor/
AllExceptionInfoVisitor.java 28 * This AttributeVisitor lets a given ExceptionInfoVisitor visit all exceptions
37 private final ExceptionInfoVisitor exceptionInfoVisitor;
40 public AllExceptionInfoVisitor(ExceptionInfoVisitor exceptionInfoVisitor)
42 this.exceptionInfoVisitor = exceptionInfoVisitor;
53 codeAttribute.exceptionsAccept(clazz, method, exceptionInfoVisitor);
ExceptionInfoVisitor.java 34 public interface ExceptionInfoVisitor
StackSizeComputer.java 40 ExceptionInfoVisitor
254 // Implementations for ExceptionInfoVisitor.
  /external/proguard/src/proguard/classfile/editor/
ExceptionInfoAdder.java 25 import proguard.classfile.attribute.visitor.ExceptionInfoVisitor;
28 * This ExceptionInfoVisitor adds all exception information that it visits to
34 implements ExceptionInfoVisitor
52 // Implementations for ExceptionInfoVisitor.
ConstantPoolRemapper.java 52 ExceptionInfoVisitor,
437 // Implementations for ExceptionInfoVisitor.
CodeAttributeComposer.java 42 ExceptionInfoVisitor,
479 // Implementations for ExceptionInfoVisitor.
CodeAttributeEditor.java 43 ExceptionInfoVisitor,
824 // Implementations for ExceptionInfoVisitor.
    [all...]
  /external/proguard/src/proguard/classfile/attribute/
CodeAttribute.java 147 public void exceptionsAccept(Clazz clazz, Method method, ExceptionInfoVisitor exceptionInfoVisitor)
153 exceptionInfoVisitor.visitExceptionInfo(clazz, method, this, exceptionTable[index]);
162 public void exceptionsAccept(Clazz clazz, Method method, int offset, ExceptionInfoVisitor exceptionInfoVisitor)
169 exceptionInfoVisitor.visitExceptionInfo(clazz, method, this, exceptionInfo);
179 public void exceptionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor)
186 exceptionInfoVisitor.visitExceptionInfo(clazz, method, this, exceptionInfo);
  /external/proguard/src/proguard/optimize/peephole/
UnreachableExceptionRemover.java 39 ExceptionInfoVisitor
41 private final ExceptionInfoVisitor extraExceptionInfoVisitor;
61 public UnreachableExceptionRemover(ExceptionInfoVisitor extraExceptionInfoVisitor)
84 // Implementations for ExceptionInfoVisitor.
ReachableCodeMarker.java 40 ExceptionInfoVisitor
182 // Implementations for ExceptionInfoVisitor.
BranchTargetFinder.java 42 ExceptionInfoVisitor,
599 // Implementations for ExceptionInfoVisitor.
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 43 ExceptionInfoVisitor
55 private ExceptionInfoVisitor subroutineExceptionInliner = this;
198 ExceptionInfoVisitor oldSubroutineExceptionInliner = subroutineExceptionInliner;
347 // Implementations for ExceptionInfoVisitor.
  /external/proguard/src/proguard/optimize/
TailRecursionSimplifier.java 44 ExceptionInfoVisitor
238 // Implementations for ExceptionInfoVisitor.
  /external/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 41 ExceptionInfoVisitor
374 // Implementations for ExceptionInfoVisitor.
  /external/proguard/src/proguard/classfile/io/
ProgramClassWriter.java 267 ExceptionInfoVisitor,
467 // Implementations for ExceptionInfoVisitor.
ProgramClassReader.java 50 ExceptionInfoVisitor,
541 // Implementations for ExceptionInfoVisitor.
    [all...]
  /external/proguard/src/proguard/shrink/
UsageMarker.java 52 ExceptionInfoVisitor,
673 // Implementations for ExceptionInfoVisitor.

Completed in 256 milliseconds

1 2