Searched refs:timeMethod (Results 1 – 3 of 3) sorted by relevance
70 static Method checkTimeMethod(Method timeMethod) throws InvalidBenchmarkException { in checkTimeMethod() argument71 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()
61 public void timeMethod() {} in timeMethod() method in BenchmarkClassCheckerTest.TimeMethod
172 public long timeMethod(long reps) { in timeMethod() method in TestRunnerTest.CaliperBenchmark