Home
last modified time | relevance | path

Searched refs:workerClass (Results 1 – 9 of 9) sorted by relevance

/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
DWorkerSpec.java35 public final Class<?> workerClass; field in WorkerSpec
47 Class<?> workerClass, in WorkerSpec() argument
53 this.workerClass = workerClass; in WorkerSpec()
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
DWorkerModule.java46 private final Class<? extends Worker> workerClass; field in WorkerModule
52 this.workerClass = workerSpec.workerClass.asSubclass(Worker.class); in WorkerModule()
66 Provider<Worker> workerProvider = availableWorkers.get(workerClass); in provideWorker()
69 workerClass, availableWorkers); in provideWorker()
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DRuntimeInstrumentTest.java83 assertEquals(MacrobenchmarkWorker.class, instrumentation.workerClass()); in createInstrumentation_macrobenchmark()
91 assertEquals(RuntimeWorker.Micro.class, instrumentation.workerClass()); in createInstrumentation_microbenchmark()
99 assertEquals(RuntimeWorker.Pico.class, instrumentation.workerClass()); in createInstrumentation_picobenchmark()
DExperimentingRunnerModuleTest.java131 public Class<? extends Worker> workerClass() { in createInstrumentation()
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DAllocationInstrument.java116 public Class<? extends Worker> workerClass() { in workerClass() method in AllocationInstrument.MicroAllocationInstrumentation
157 public Class<? extends Worker> workerClass() { in workerClass() method in AllocationInstrument.MacroAllocationInstrumentation
DRuntimeInstrument.java152 public Class<? extends Worker> workerClass() { in workerClass() method in RuntimeInstrument.MacrobenchmarkInstrumentation
217 @Override public Class<? extends Worker> workerClass() { in workerClass() method in RuntimeInstrument.MicrobenchmarkInstrumentation
237 @Override public Class<? extends Worker> workerClass() { in workerClass() method in RuntimeInstrument.PicobenchmarkInstrumentation
DArbitraryMeasurementInstrument.java104 public Class<? extends Worker> workerClass() { in workerClass() method in ArbitraryMeasurementInstrument.ArbitraryMeasurementInstrumentation
DInstrument.java120 public abstract Class<? extends Worker> workerClass(); in workerClass() method in Instrument.Instrumentation
DWorkerProcess.java154 instrumentation.workerClass(), in buildProcess()