Searched defs:codeAttribute (Results 1 - 25 of 136) sorted by relevance

123456

/external/proguard/src/proguard/classfile/attribute/visitor/
H A DExceptionInfoVisitor.java36 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo); argument
H A DLineNumberInfoVisitor.java37 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo); argument
H A DLocalVariableInfoVisitor.java37 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo); argument
H A DLocalVariableTypeInfoVisitor.java37 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo); argument
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/visitor/
H A DExceptionHandlerConstantVisitor.java54 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo) argument
/external/proguard/src/proguard/optimize/evaluation/
H A DTracedBranchUnit.java39 CodeAttribute codeAttribute,
47 super.branch(clazz, codeAttribute, offset, branchTarget);
52 super.branchConditionally(clazz, codeAttribute, offset, branchTarget, conditional);
38 branchConditionally(Clazz clazz, CodeAttribute codeAttribute, int offset, int branchTarget, int conditional) argument
/external/proguard/src/proguard/classfile/attribute/
H A DAttribute.java117 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
120 if (codeAttribute == null)
H A DLineNumberTableAttribute.java82 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
84 attributeVisitor.visitLineNumberTableAttribute(clazz, method, codeAttribute, this);
91 public void lineNumbersAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfoVisitor lineNumberInfoVisitor) argument
97 lineNumberInfoVisitor.visitLineNumberInfo(clazz, method, codeAttribute, lineNumberTable[index]);
H A DLocalVariableTableAttribute.java61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
63 attributeVisitor.visitLocalVariableTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfoVisitor localVariableInfoVisitor) argument
76 localVariableInfoVisitor.visitLocalVariableInfo(clazz, method, codeAttribute, localVariableTable[index]);
H A DLocalVariableTypeTableAttribute.java61 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) argument
63 attributeVisitor.visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, this);
70 public void localVariablesAccept(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfoVisitor localVariableTypeInfoVisitor) argument
76 localVariableTypeInfoVisitor.visitLocalVariableTypeInfo(clazz, method, codeAttribute, localVariableTypeTable[index]);
H A DUnknownAttribute.java78 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, AttributeVisitor attributeVisitor) 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/editor/
H A DCodeAttributeEditorResetter.java56 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
58 codeAttributeEditor.reset(codeAttribute.u4codeLength);
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);
52 codeAttribute.u2maxStack = stackSizeComputer.getMaxStackSize();
H A DVariableSizeUpdater.java53 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) argument
60 codeAttribute.u2maxLocals =
67 System.out.println(" Max locals: "+codeAttribute.u2maxLocals+" <- parameters");
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
88 if (codeAttribute.u2maxLocals < variableSize)
90 codeAttribute.u2maxLocals = variableSize;
94 System.out.println("Max locals: "+codeAttribute.u2maxLocals+" <- "+variableInstruction.toString(offset));
/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.java53 CodeAttribute codeAttribute,
51 visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction) argument

Completed in 157 milliseconds

123456