Home
last modified time | relevance | path

Searched refs:timeMethod (Results 1 – 3 of 3) sorted by relevance

/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DBenchmarkMethods.java70 static Method checkTimeMethod(Method timeMethod) throws InvalidBenchmarkException { in checkTimeMethod() argument
71 checkArgument(isTimeMethod(timeMethod)); in checkTimeMethod()
72 Class<?>[] parameterTypes = timeMethod.getParameterTypes(); in checkTimeMethod()
76 "Microbenchmark methods must accept a single int parameter: " + timeMethod.getName()); in checkTimeMethod()
80 if (Util.isStatic(timeMethod)) { in checkTimeMethod()
82 "Microbenchmark methods must not be static: " + timeMethod.getName()); in checkTimeMethod()
84 return timeMethod; in checkTimeMethod()
/external/caliper/caliper/src/test/java/com/google/caliper/runner/
DBenchmarkClassCheckerTest.java61 public void timeMethod() {} in timeMethod() method in BenchmarkClassCheckerTest.TimeMethod
/external/vogar/test/vogar/target/
DTestRunnerTest.java172 public long timeMethod(long reps) { in timeMethod() method in TestRunnerTest.CaliperBenchmark