Lines Matching defs:title
292 const String16& title, const ConsoleHelper& helper,
296 if (title.isEmpty()) {
304 identifier = title + "@";
317 String16 title = helper.firstArgToString(String16("default"), false);
319 title, helper, consoleContext, m_inspector);
326 title.isEmpty() ? countString : (title + ": " + countString));
328 "V8Console::Count", "title",
329 TRACE_STR_COPY(title.utf8().c_str()), "count", count);
337 String16 title = helper.firstArgToString(String16("default"), false);
339 title, helper, consoleContext, m_inspector);
344 "Count for '" + title + "' does not exist");
347 "V8Console::CountReset", "title",
348 TRACE_STR_COPY(title.utf8().c_str()));
371 String16 title = helper.firstArgToString(String16());
372 helper.forEachSession([&title](V8InspectorSessionImpl* session) {
373 session->profilerAgent()->consoleProfile(title);
376 "V8Console::Profile", "title",
377 TRACE_STR_COPY(title.utf8().c_str()));
385 String16 title = helper.firstArgToString(String16());
386 helper.forEachSession([&title](V8InspectorSessionImpl* session) {
387 session->profilerAgent()->consoleProfileEnd(title);
390 "V8Console::ProfileEnd", "title",
391 TRACE_STR_COPY(title.utf8().c_str()));
428 String16 title = protocolTitle + "@" +
433 helper.consoleMessageStorage()->timeLog(helper.contextId(), title);
436 helper.consoleMessageStorage()->timeEnd(helper.contextId(), title);
469 String16 title = helper.firstArgToString(String16());
470 m_inspector->client()->consoleTimeStamp(toStringView(title));