Home
last modified time | relevance | path

Searched refs:incrementStat (Results 1 – 23 of 23) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DInstructionDeleter.java97 stats.incrementStat("Deleted instruction"); in applyMutation()
109 stats.incrementStat("Deleted a with-data insn's data"); in applyMutation()
131 stats.incrementStat("Deleted a data insn's with-data insn"); in applyMutation()
DRegisterClobber.java100 stats.incrementStat("Clobbered the registers"); in applyMutation()
DInstructionDuplicator.java100 stats.incrementStat("Duplicated instruction"); in applyMutation()
DIfBranchChanger.java133 stats.incrementStat("Changed if branch operator to " + getMutationTag() + " operator"); in applyMutation()
DInstructionSwapper.java153 stats.incrementStat("Swapped two instructions"); in applyMutation()
DCmpBiasChanger.java127 stats.incrementStat("Changed comparison bias"); in applyMutation()
DBranchShifter.java165 stats.incrementStat("Shifted branch target"); in applyMutation()
DConstantValueChanger.java141 stats.incrementStat("Changed constant value"); in applyMutation()
DNewArrayLengthChanger.java139 stats.incrementStat("Changed length of new array"); in applyMutation()
DSwitchBranchShifter.java170 stats.incrementStat("Shifted switch target"); in applyMutation()
DConversionRepeater.java187 stats.incrementStat("Repeating conversion"); in applyMutation()
DNonsenseStringPrinter.java143 stats.incrementStat("Printed nonsense string"); in applyMutation()
DVRegChanger.java190 stats.incrementStat("Changed a virtual register"); in applyMutation()
DInvokeChanger.java145 stats.incrementStat("Changed invoke call instruction"); in applyMutation()
DFieldFlagChanger.java149 stats.incrementStat("Changed volatility of field"); in applyMutation()
DPoolIndexChanger.java191 stats.incrementStat("Changed constant pool index"); in applyMutation()
DTryBlockShifter.java209 stats.incrementStat("Shifted boundary in a try block"); in applyMutation()
DNewMethodCaller.java182 stats.incrementStat("Called new method"); in applyMutation()
DNewInstanceChanger.java159 stats.incrementStat("Changed new instance."); in applyMutation()
DValuePrinter.java184 stats.incrementStat("Printed output value"); in applyMutation()
DRandomInstructionGenerator.java262 stats.incrementStat("Generated random instruction"); in applyMutation()
DArithOpChanger.java144 stats.incrementStat("Changed arithmetic opcode"); in applyMutation()
/art/tools/dexfuzz/src/dexfuzz/
DMutationStats.java41 public void incrementStat(String statName) { in incrementStat() method in MutationStats