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

/art/tools/dexfuzz/src/dexfuzz/program/
H A DMutatableCode.java146 public void insertInstructionAfter(MInsn toBeInserted, int insertionIdx) { argument
148 insertInstructionAt(toBeInserted, insertionIdx + 1);
152 toBeInserted.location = finalInsn.location + finalInsn.insn.getSize();
153 mutatableInsns.add(toBeInserted);
160 public void insertInstructionAt(MInsn toBeInserted, int insertionIdx) { argument
162 toBeInserted.location = currentInsn.location;
163 mutatableInsns.add(insertionIdx , toBeInserted);
164 updateInstructionLocationsAfter(toBeInserted, toBeInserted.insn.getSize());

Completed in 14 milliseconds