Searched defs:method (Results 101 - 125 of 965) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationsAttribute.java89 * Applies the given visitor to all method annotations.
91 public void annotationsAccept(Clazz clazz, Method method, AnnotationVisitor annotationVisitor) argument
97 annotationVisitor.visitAnnotation(clazz, method, annotations[index]);
H A DParameterAnnotationsAttribute.java66 public void annotationsAccept(Clazz clazz, Method method, AnnotationVisitor annotationVisitor) argument
79 annotationVisitor.visitAnnotation(clazz, method, parameterIndex, annotations[index]);
H A DRuntimeInvisibleAnnotationsAttribute.java66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
68 attributeVisitor.visitRuntimeInvisibleAnnotationsAttribute(clazz, method, this);
H A DRuntimeInvisibleParameterAnnotationsAttribute.java58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
60 attributeVisitor.visitRuntimeInvisibleParameterAnnotationsAttribute(clazz, method, this);
H A DRuntimeVisibleAnnotationsAttribute.java66 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
68 attributeVisitor.visitRuntimeVisibleAnnotationsAttribute(clazz, method, this);
H A DRuntimeVisibleParameterAnnotationsAttribute.java58 public void accept(Clazz clazz, Method method, AttributeVisitor attributeVisitor) argument
60 attributeVisitor.visitRuntimeVisibleParameterAnnotationsAttribute(clazz, method, this);
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DAnnotationVisitor.java38 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation); argument
39 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation); argument
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DSameZeroFrame.java62 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, StackMapFrameVisitor stackMapFrameVisitor) argument
64 stackMapFrameVisitor.visitSameZeroFrame(clazz, method, codeAttribute, offset, this);
H A DStackMapAttribute.java71 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
73 attributeVisitor.visitStackMapAttribute(clazz, method, codeAttribute, this);
80 public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor) argument
88 stackMapFrameVisitor.visitFullFrame(clazz, method, codeAttribute, stackMapFrame.getOffsetDelta(), stackMapFrame);
H A DStackMapTableAttribute.java69 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
71 attributeVisitor.visitStackMapTableAttribute(clazz, method, codeAttribute, this);
78 public void stackMapFramesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapFrameVisitor stackMapFrameVisitor) argument
90 stackMapFrame.accept(clazz, method, codeAttribute, offset, stackMapFrameVisitor);
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DAllExceptionInfoVisitor.java51 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
53 codeAttribute.exceptionsAccept(clazz, method, exceptionInfoVisitor);
/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);
/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 DInstructionConstantVisitor.java57 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) {} argument
60 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction) argument
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);

Completed in 135 milliseconds

1234567891011>>