Searched defs:method (Results 76 - 100 of 643) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeEditorResetter.java56 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
H A DExceptionInfoAdder.java54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
H A DInstructionAdder.java58 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
65 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
H A DLineNumberInfoAdder.java49 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo) argument
H A DLocalVariableInfoAdder.java52 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo) argument
H A DLocalVariableTypeInfoAdder.java52 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo) argument
H A DStackSizeUpdater.java46 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
49 stackSizeComputer.visitCodeAttribute(clazz, method, codeAttribute);
H A DVariableSizeUpdater.java53 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
57 // method.getName(clazz).equals("abc");
61 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
62 method.getAccessFlags());
66 System.out.println("VariableSizeUpdater: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
71 codeAttribute.instructionsAccept(clazz, method, this);
77 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
80 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction) argument
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DAllInstructionVisitor.java52 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
54 codeAttribute.instructionsAccept(clazz, method, instructionVisitor);
H A DInstructionCounter.java52 Method method,
51 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
/external/proguard/src/proguard/classfile/visitor/
H A DExceptionCounter.java48 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
H A DExceptionExcludedOffsetFilter.java57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
H A DExceptionHandlerFilter.java61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
67 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
H A DExceptionOffsetFilter.java57 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
61 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
H A DExceptionRangeFilter.java61 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
65 exceptionInfoVisitor.visitExceptionInfo(clazz, method, codeAttribute, exceptionInfo);
/external/proguard/src/proguard/evaluation/
H A DInvocationUnit.java29 * This interface sets up the variables for entering a method,
37 * Sets up the given variables for entering the given method.
40 Method method,
45 * Exits the given method with the given return value.
48 Method method,
54 * field or method reference instruction.
57 Method method,
39 enterMethod(Clazz clazz, Method method, Variables variables) argument
47 exitMethod(Clazz clazz, Method method, Value returnValue) argument
56 invokeMember(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction, Stack stack) argument
/external/proguard/src/proguard/optimize/
H A DParameterShrinker.java77 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
80 int oldParameterSize = ParameterUsageMarker.getParameterSize(method);
84 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
85 method.getAccessFlags());
94 System.out.println("ParameterShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
109 if (ParameterUsageMarker.isParameterUsed(method, parameterIndex))
125 // Visit the method, if required.
128 method.accept(clazz, extraVariableMemberVisitor);
143 variableRemapper.visitCodeAttribute(clazz, method, codeAttribut
[all...]
/external/proguard/src/proguard/optimize/info/
H A DCatchExceptionMarker.java42 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
46 markCatchException(method);
53 private static void markCatchException(Method method) argument
55 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
63 public static boolean catchesExceptions(Method method) argument
65 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
H A DExceptionInstructionChecker.java50 public boolean mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument
54 instruction.accept(clazz, method, codeAttribute, offset, this);
62 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
65 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
103 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
130 // // Check if the invoking the method may throw an exception.
142 // // Do we have a reference to the method?
145 // // We'll have to assume invoking the unknown method may throw an
151 // // First check the referenced method itself.
160 // // Check all other implementations of the method i
[all...]
H A DSuperInvocationMarker.java47 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
50 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
60 setInvokesSuperMethods(method);
78 private static void setInvokesSuperMethods(Method method) argument
80 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
88 public static boolean invokesSuperMethods(Method method) argument
90 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method);
/external/proguard/src/proguard/optimize/peephole/
H A DGotoGotoReplacer.java72 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
75 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
108 extraInstructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
H A DGotoReturnReplacer.java72 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
75 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction) argument
107 extraInstructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, branchInstruction);
H A DNopRemover.java71 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
74 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) argument
85 extraInstructionVisitor.visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
H A DPeepholeOptimizer.java86 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
91 branchTargetFinder.visitCodeAttribute(clazz, method, codeAttribute);
98 codeAttribute.instructionsAccept(clazz, method, instructionVisitor);
101 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
H A DVariableShrinker.java79 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
81 if ((method.getAccessFlags() & ClassConstants.INTERNAL_ACC_ABSTRACT) == 0)
85 ClassUtil.internalMethodParameterSize(method.getDescriptor(clazz),
86 method.getAccessFlags());
93 System.out.println("VariableShrinker: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
99 variableUsageMarker.visitCodeAttribute(clazz, method, codeAttribute);
117 // Visit the method, if required.
120 method.accept(clazz, extraVariableMemberVisitor);
126 variableEditor.visitCodeAttribute(clazz, method, codeAttribut
[all...]

Completed in 205 milliseconds

1234567891011>>