Searched defs:effectiveInstructions (Results 1 - 1 of 1) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DMethodDefinition.java72 @Nonnull public final List<Instruction> effectiveInstructions; field in class:MethodDefinition
95 effectiveInstructions = Lists.newArrayList(instructions);
122 effectiveInstructions.set(i, new ImmutableInstruction31t(opcode,
124 effectiveInstructions.add(payloadInstruction);
145 effectiveInstructions.set(i, new ImmutableInstruction31t(opcode,
147 effectiveInstructions.add(payloadInstruction);
406 for (int i=0; i<effectiveInstructions.size(); i++) {
407 Instruction instruction = effectiveInstructions.get(i);
414 if (i != effectiveInstructions.size() - 1) {

Completed in 136 milliseconds