Home | History | Annotate | Download | only in attribute

Lines Matching full:instruction

25 import proguard.classfile.instruction.*;
26 import proguard.classfile.instruction.visitor.InstructionVisitor;
106 * Applies the given instruction visitor to all instructions.
115 * Applies the given instruction visitor to the instruction at the specified
120 Instruction instruction = InstructionFactory.create(code, offset);
121 instruction.accept(clazz, method, this, offset, instructionVisitor);
126 * Applies the given instruction visitor to all instructions in the
135 // Note that the instruction is only volatile.
136 Instruction instruction = InstructionFactory.create(code, offset);
137 int instructionLength = instruction.length(offset);
138 instruction.accept(clazz, method, this, offset, instructionVisitor);
160 * to the instruction at the specified offset.