Home
last modified time | relevance | path

Searched refs:instructionList (Results 1 – 3 of 3) 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/fonttools/Lib/fontTools/ttLib/tables/
DttProgram.py161 def _makeDict(instructionList): argument
164 for op, mnemonic, argBits, name, pops, pushes in instructionList: