HomeSort by relevance Sort by last modified time
    Searched defs:codeItem (Results 1 - 2 of 2) sorted by null

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
RawDexFile.java 44 public List<CodeItem> codeItems;
250 for (CodeItem codeItem : codeItems) {
251 codeItem.write(file);
376 for (CodeItem codeItem : codeItems) {
377 codeItem.incrementIndex(kind, insertedIdx);
  /art/tools/dexfuzz/src/dexfuzz/program/
Program.java 43 import dexfuzz.rawdex.CodeItem;
70 * deciding which ones should be applied to each CodeItem.
213 for (CodeItem codeItem : rawDexFile.codeItems) {
214 if (legalToMutate(codeItem)) {
217 mutatableCodes.add(translator.codeItemToMutatableCode(this, codeItem,
253 * For each CodeItem, find the name of the method the item represents.
285 * Associate the name of the provided method with its CodeItem, if it
309 // Get the codeItem.
310 if (method.codeOff.getPointedToItem() instanceof CodeItem) {
    [all...]

Completed in 152 milliseconds