/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);
|
/external/clang/utils/ |
modfuzz.py | 94 for d in mutations(model): 132 def mutations(model): function
|
/packages/apps/Dialer/java/com/android/dialer/calllog/ |
RefreshAnnotatedCallLogWorker.java | 138 CallLogMutations mutations = new CallLogMutations(); local 145 systemCallLogDataSource.fill(appContext, database, lastRebuildTimeMillis, mutations); 156 dataSource.fill(appContext, database, lastRebuildTimeMillis, mutations); 163 LogUtil.i("RefreshAnnotatedCallLogWorker.rebuild", "applying mutations to database"); 165 mutations.applyToDatabase(database);
|
/packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/ |
SystemCallLogDataSource.java | 84 CallLogMutations mutations) { 87 // This data source should always run first so the mutations should always be empty. 88 Assert.checkState(mutations.isEmpty());
|
/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...] |