Lines Matching refs:String16
23 String16 consoleAPITypeValue(ConsoleAPIType type) { in consoleAPITypeValue()
69 static String16 toString(v8::Local<v8::Value> value, in toString()
72 if (!builder.append(value)) return String16(); in toString()
102 m_builder.append(String16::fromDouble( in append()
177 String16 toString() { in toString()
178 if (m_tryCatch.HasCaught()) return String16(); in toString()
193 const String16& message) in V8ConsoleMessage()
207 void V8ConsoleMessage::setLocation(const String16& url, unsigned lineNumber, in setLocation()
221 String16 level = protocol::Console::ConsoleMessage::LevelEnum::Log; in reportToFrontend()
309 exceptionDetails->setScriptId(String16::fromInteger(m_scriptId)); in reportToFrontend()
339 Maybe<String16> consoleContext; in reportToFrontend()
379 const String16& consoleContext, in createForConsoleAPI()
384 new V8ConsoleMessage(V8MessageOrigin::kConsole, timestamp, String16())); in createForConsoleAPI()
431 double timestamp, const String16& detailedMessage, const String16& url, in createForException()
434 v8::Isolate* isolate, const String16& message, int contextId, in createForException()
455 double timestamp, const String16& messageText, in createForRevokedException()
520 int contextId, const String16& method) { in shouldReportDeprecationMessage()
521 std::set<String16>& reportedDeprecationMessages = in shouldReportDeprecationMessage()
529 int V8ConsoleMessageStorage::count(int contextId, const String16& id) { in count()
533 void V8ConsoleMessageStorage::time(int contextId, const String16& id) { in time()
537 bool V8ConsoleMessageStorage::countReset(int contextId, const String16& id) { in countReset()
538 std::map<String16, int>& count_map = m_data[contextId].m_count; in countReset()
545 double V8ConsoleMessageStorage::timeEnd(int contextId, const String16& id) { in timeEnd()
546 std::map<String16, double>& time = m_data[contextId].m_time; in timeEnd()
554 bool V8ConsoleMessageStorage::hasTimer(int contextId, const String16& id) { in hasTimer()
555 const std::map<String16, double>& time = m_data[contextId].m_time; in hasTimer()