Searched defs:benchmarkMethod (Results 1 – 10 of 10) sorted by relevance
79 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("macrobenchmark"); in createInstrumentation_macrobenchmark() local87 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("microbenchmark", int.class); in createInstrumentation_microbenchmark() local95 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("picobenchmark", long.class); in createInstrumentation_picobenchmark() local103 Method benchmarkMethod = in createInstrumentation_badParam() local112 Method benchmarkMethod = RuntimeBenchmark.class.getDeclaredMethod("notAMacrobenchmark"); in createInstrumentation_notAMacrobenchmark() local120 Method benchmarkMethod = in createInstrumentationnotAMicrobenchmark() local129 Method benchmarkMethod = in createInstrumentation_notAPicobenchmark() local218 int benchmarkMethod() { in benchmarkMethod() method in RuntimeInstrumentTest.BenchmarkThatAllocatesALot
37 @Benchmark void benchmarkMethod() {} in benchmarkMethod() method in BenchmarkClassCheckerTest.BenchmarkAnnotatedMethod
127 public Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()
38 private final Method benchmarkMethod; field in ExperimentModule41 Method benchmarkMethod, in ExperimentModule()48 Method benchmarkMethod = experiment.instrumentation().benchmarkMethod(); in forExperiment() local57 Method benchmarkMethod = findBenchmarkMethod(benchmarkClass, spec.benchmarkSpec.methodName(), in forWorkerSpec() local
71 public Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()92 MicroAllocationInstrumentation(Method benchmarkMethod) { in MicroAllocationInstrumentation()133 MacroAllocationInstrumentation(Method benchmarkMethod) { in MacroAllocationInstrumentation()
66 public abstract Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()79 protected Method benchmarkMethod; field in Instrument.Instrumentation81 protected Instrumentation(Method benchmarkMethod) { in Instrumentation()89 Method benchmarkMethod() { in benchmarkMethod() method in Instrument.Instrumentation
52 public Instrumentation createInstrumentation(Method benchmarkMethod) in createInstrumentation()86 protected ArbitraryMeasurementInstrumentation(Method benchmarkMethod) { in ArbitraryMeasurementInstrumentation()
95 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()
42 static Type of(Method benchmarkMethod) { in of()
39 protected final Method benchmarkMethod; field in Worker