Home
last modified time | relevance | path

Searched defs:benchmarkMethod (Results 1 – 10 of 10) sorted by relevance

/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DRuntimeInstrumentTest.java79 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("macrobenchmark"); in createInstrumentation_macrobenchmark() local
87 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("microbenchmark", int.class); in createInstrumentation_microbenchmark() local
95 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("picobenchmark", long.class); in createInstrumentation_picobenchmark() local
103 Method benchmarkMethod = in createInstrumentation_badParam() local
112 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("notAMacrobenchmark"); in createInstrumentation_notAMacrobenchmark() local
120 Method benchmarkMethod = in createInstrumentationnotAMicrobenchmark() local
129 Method benchmarkMethod = in createInstrumentation_notAPicobenchmark() local
218 int benchmarkMethod() { in benchmarkMethod() method in RuntimeInstrumentTest.BenchmarkThatAllocatesALot
DBenchmarkClassCheckerTest.java37 @Benchmark void benchmarkMethod() {} in benchmarkMethod() method in BenchmarkClassCheckerTest.BenchmarkAnnotatedMethod
DExperimentingRunnerModuleTest.java127 public Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DExperimentModule.java38 private final Method benchmarkMethod; field in ExperimentModule
41 Method benchmarkMethod, in ExperimentModule()
48 Method benchmarkMethod = experiment.instrumentation().benchmarkMethod(); in forExperiment() local
57 Method benchmarkMethod = findBenchmarkMethod(benchmarkClass, spec.benchmarkSpec.methodName(), in forWorkerSpec() local
DAllocationInstrument.java71 public Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()
92 MicroAllocationInstrumentation(Method benchmarkMethod) { in MicroAllocationInstrumentation()
133 MacroAllocationInstrumentation(Method benchmarkMethod) { in MacroAllocationInstrumentation()
DInstrument.java66 public abstract Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()
79 protected Method benchmarkMethod; field in Instrument.Instrumentation
81 protected Instrumentation(Method benchmarkMethod) { in Instrumentation()
89 Method benchmarkMethod() { in benchmarkMethod() method in Instrument.Instrumentation
DArbitraryMeasurementInstrument.java52 public Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()
86 protected ArbitraryMeasurementInstrumentation(Method benchmarkMethod) { in ArbitraryMeasurementInstrumentation()
DRuntimeInstrument.java95 public Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()
121 MacrobenchmarkInstrumentation(Method benchmarkMethod) { in MacrobenchmarkInstrumentation()
213 MicrobenchmarkInstrumentation(Method benchmarkMethod) { in MicrobenchmarkInstrumentation()
233 PicobenchmarkInstrumentation(Method benchmarkMethod) { in PicobenchmarkInstrumentation()
DBenchmarkMethods.java42 static Type of(Method benchmarkMethod) { in of()
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
DWorker.java39 protected final Method benchmarkMethod; field in Worker