Lines Matching defs:title
575 CpuProfile::CpuProfile(CpuProfiler* profiler, ProfilerId id, const char* title,
578 : title_(title),
1061 const char* title, CpuProfilingOptions options,
1063 return StartProfiling(++last_id_, title, options, std::move(delegate));
1067 ProfilerId id, const char* title, CpuProfilingOptions options,
1080 if ((profile->title() != nullptr && title != nullptr &&
1081 strcmp(profile->title(), title) == 0) ||
1083 // Ignore attempts to start profile with the same title or id
1094 new CpuProfile(profiler_, id, title, options, std::move(delegate));
1123 CpuProfile* CpuProfilesCollection::Lookup(const char* title) {
1127 if (title == nullptr) {
1130 // http://crbug/51594, edge case console.profile may provide an empty title
1132 const bool empty_title = title[0] == '\0';
1137 (p->title() != nullptr && strcmp(p->title(), title) == 0));