HomeSort by relevance Sort by last modified time
    Searched defs:constantInstruction (Results 1 - 2 of 2) sorted by null

  /external/proguard/src/proguard/classfile/editor/
InstructionWriter.java 74 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
79 constantInstruction.write(codeAttribute, offset);
85 new ConstantInstruction(constantInstruction.opcode,
86 constantInstruction.constantIndex,
87 constantInstruction.constant).shrink();
92 constantInstruction.constantIndex = 0;
93 constantInstruction.constant = 0;
94 constantInstruction.write(codeAttribute, offset)
    [all...]
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 621 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
623 println(constantInstruction.toString(offset));
626 clazz.constantPoolEntryAccept(constantInstruction.constantIndex, this);
    [all...]

Completed in 40 milliseconds