Home
last modified time | relevance | path

Searched refs:methodGen (Results 1 – 2 of 2) sorted by relevance

/external/apache-commons-bcel/src/test/java/org/apache/bcel/
DLocalVariableTypeTableTestCase.java85 final MethodGen methodGen = new MethodGen(method, clazz.getClassName(), cp); in injection() local
87 final InstructionList instructionList = methodGen.getInstructionList(); in injection()
88 …instructionList.insert(instructionList.getStart(), makeWillBeAddedInstructionList(methodGen, first… in injection()
90 methodGen.setMaxStack(); in injection()
91 methodGen.setMaxLocals(); in injection()
93 method = methodGen.getMethod(); in injection()
99 …public InstructionList makeWillBeAddedInstructionList(final MethodGen methodGen, final int firstSt… in makeWillBeAddedInstructionList() argument
104 final LocalVariableGen localVariableGen = methodGen.getLocalVariables()[firstStringOffset]; in makeWillBeAddedInstructionList()
113 return createPrintln(methodGen.getConstantPool(), instruction); in makeWillBeAddedInstructionList()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/classfile/
DConstantPoolTestCase.java45 final MethodGen methodGen = new MethodGen(method, clazz.getClassName(), cp); in getInstructionHandles() local
46 final InstructionList instructionList = methodGen.getInstructionList(); in getInstructionHandles()