Lines Matching defs:name
62 "name,iterations,real_time,cpu_time,time_unit,bytes_per_second,"
248 if (!p.regex->Match(r.name)) {
249 BM_VLOG(2) << p.regex_str << " is not matched by " << r.name << "\n";
252 BM_VLOG(2) << p.regex_str << " is matched by " << r.name << "\n";
253 BM_VLOG(1) << "Checking results of " << r.name << ": ... \n";
255 BM_VLOG(1) << "Checking results of " << r.name << ": OK.\n";
271 results.emplace_back(vals[0]); // vals[0] is the benchmark name
309 auto pos = name.find("/threads:");
310 if (pos == name.npos) return 1;
311 auto end = name.find('/', pos + 9);
313 ss << name.substr(pos + 9, end);
397 std::string name;
407 : name(n), output_cases(out_tc), error_cases(err_tc), reporter(br) {
427 std::string("\nTesting ") + rep_test.name + std::string(" Output\n");
444 BM_CHECK(csv.name == std::string("CSVReporter"));
478 static bool FileExists(std::string const& name) {
479 std::ifstream in(name.c_str());
489 std::string name = GetRandomFileName();
490 if (!FileExists(name)) return name;
492 std::cerr << "Failed to create unique temporary file name" << std::endl;