Searched refs:BenchmarkT (Results 1 – 2 of 2) sorted by relevance
63 class BenchmarkT : public Benchmark {65 BenchmarkT() {} in BenchmarkT() function66 virtual ~BenchmarkT() {} in ~BenchmarkT()75 class BenchmarkWithoutArg : public BenchmarkT<void*> {83 if (BenchmarkT<void*>::ShouldRun(regs, nullptr)) { in RunAllArgs()105 class BenchmarkWithArg : public BenchmarkT<T> {129 if (BenchmarkT<T>::ShouldRun(regs, arg)) { in RunAllArgs()131 BenchmarkT<T>::RunWithArg(arg); in RunAllArgs()
74 bool BenchmarkT<T>::ShouldRun(std::vector<regex_t*>& regs, T arg) { in ShouldRun()115 void BenchmarkT<T>::RunWithArg(T arg) { in RunWithArg()152 template class BenchmarkT<int>; variable153 template class BenchmarkT<double>; variable154 template class BenchmarkT<void*>; variable