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

  /art/tools/dexfuzz/src/dexfuzz/program/mutators/
CodeMutator.java 38 * Used to track which mutations happen.
43 * Used to track mutations that have been applied so far.
45 protected List<Mutation> mutations; field in class:CodeMutator
66 public CodeMutator(Random rng, MutationStats stats, List<Mutation> mutations) {
69 this.mutations = mutations;
119 mutations.add(mutation);
  /art/tools/dexfuzz/src/dexfuzz/program/
Program.java 117 * Used if we're loading mutations from a file, so we can find the correct mutator.
127 * A list of all mutations used for loading/dumping mutations from/to a file.
129 private List<Mutation> mutations; field in class:Program
138 * Given a maximum number of mutations that can be performed on a method, n,
139 * give up after attempting (n * this value) mutations for any method.
165 mutations = previousMutations;
167 // Allocate the mutations list.
168 mutations = new ArrayList<Mutation>();
170 // Read in the mutations if we need to
387 int mutations = getNumberOfMutationsToPerform(); local
    [all...]

Completed in 52 milliseconds