OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BenchmarkMethod
(Results
1 - 8
of
8
) sorted by null
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
MacrobenchmarkAllocationWorker.java
21
import com.google.caliper.runner.Running.
BenchmarkMethod
;
37
@
BenchmarkMethod
Method method, AllocationRecorder recorder) {
44
measureAllocations(benchmark,
benchmarkMethod
);
48
return measureAllocations(benchmark,
benchmarkMethod
).toMeasurements();
ArbitraryMeasurementWorker.java
23
import com.google.caliper.runner.Running.
BenchmarkMethod
;
42
@
BenchmarkMethod
Method method,
58
double measured = (Double)
benchmarkMethod
.invoke(benchmark);
RuntimeWorker.java
25
import com.google.caliper.runner.Running.
BenchmarkMethod
;
105
@
BenchmarkMethod
Method method, Random random, Ticker ticker,
117
benchmark.getClass(),
benchmarkMethod
.getName(),
121
benchmarkMethod
.invoke(benchmark, intReps);
131
@
BenchmarkMethod
Method method, Random random, Ticker ticker,
138
benchmarkMethod
.invoke(benchmark, reps);
MacrobenchmarkWorker.java
27
import com.google.caliper.runner.Running.
BenchmarkMethod
;
47
@Inject MacrobenchmarkWorker(@Benchmark Object benchmark, @
BenchmarkMethod
Method method,
69
benchmarkMethod
.invoke(benchmark);
MicrobenchmarkAllocationWorker.java
21
import com.google.caliper.runner.Running.
BenchmarkMethod
;
58
@
BenchmarkMethod
Method method, AllocationRecorder recorder, Random random) {
69
measureAllocations(benchmark,
benchmarkMethod
, WARMUP_REPS);
94
AllocationStats stats = measureAllocations(benchmark,
benchmarkMethod
, 0);
128
AllocationStats baseline = measureAllocations(benchmark,
benchmarkMethod
, 0);
131
AllocationStats measurement = measureAllocations(benchmark,
benchmarkMethod
, measurementReps);
AllAllocationsRecorder.java
73
@Running.
BenchmarkMethod
String benchmarkMethodName) {
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
ExperimentModule.java
20
import static com.google.caliper.runner.Running.
BenchmarkMethod
;
38
private final Method
benchmarkMethod
;
41
Method
benchmarkMethod
,
44
this.
benchmarkMethod
= checkNotNull(
benchmarkMethod
);
48
Method
benchmarkMethod
= experiment.instrumentation().
benchmarkMethod
();
50
benchmarkMethod
,
57
Method
benchmarkMethod
= findBenchmarkMethod(benchmarkClass, spec.benchmarkSpec.methodName(),
59
benchmarkMethod
.setAccessible(true)
[
all
...]
Running.java
43
public @interface
BenchmarkMethod
{}
Completed in 46 milliseconds