Home
last modified time | relevance | path

Searched refs:instructionList (Results 1 – 6 of 6) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMutableMethodImplementation.java58 …final ArrayList<MethodLocation> instructionList = Lists.newArrayList(new MethodLocation(null, 0, 0… field in MutableMethodImplementation
72 instructionList.add(new MethodLocation(null, codeAddress, index)); in MutableMethodImplementation()
78 for (int i=0; i<instructionList.size(); i++) { in MutableMethodImplementation()
79 codeAddressToIndex[instructionList.get(i).codeAddress] = i; in MutableMethodImplementation()
85 final MethodLocation location = instructionList.get(index); in MutableMethodImplementation()
108 MethodLocation debugLocation = instructionList.get(locationIndex); in MutableMethodImplementation()
152 return instructionList.get(i).instruction; in getInstructions()
160 return instructionList.size() - 1; in getInstructions()
177 …Iterables.transform(instructionList, new Function<MethodLocation, Iterable<? extends DebugItem>>()…
207 if (index >= instructionList.size()) {
[all …]
DMethodImplementationBuilder.java53 this.currentLocation = impl.instructionList.get(0); in MethodImplementationBuilder()
151 currentLocation = impl.instructionList.get(impl.instructionList.size()-1); in addInstruction()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/
DLocalVariableTypeTableTestCase.java87 final InstructionList instructionList = methodGen.getInstructionList(); in injection() local
88instructionList.insert(instructionList.getStart(), makeWillBeAddedInstructionList(methodGen, first… in injection()
94 instructionList.dispose(); in injection()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/classfile/
DConstantPoolTestCase.java46 final InstructionList instructionList = methodGen.getInstructionList(); in getInstructionHandles() local
47 return instructionList.getInstructionHandles(); in getInstructionHandles()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass3aVerifier.java129 private InstructionList instructionList; field in Pass3aVerifier
188 instructionList = new InstructionList(method.getCode().getCode()); in do_verify()
195 instructionList.setPositions(true); in do_verify()
237 final int[] instructionPositions = instructionList.getInstructionPositions(); in delayedPass2Checks()
363 InstructionHandle ih = instructionList.getStart(); in pass3StaticInstructionChecks()
385 final Instruction last = instructionList.getEnd().getInstruction(); in pass3StaticInstructionChecks()
423 InstructionHandle ih = instructionList.getStart(); in pass3StaticInstructionOperandsChecks()
430 if (target == instructionList.getStart()) { in pass3StaticInstructionOperandsChecks()
/external/fonttools/Lib/fontTools/ttLib/tables/
DttProgram.py164 def _makeDict(instructionList): argument
167 for op, mnemonic, argBits, name, pops, pushes in instructionList: