Home
last modified time | relevance | path

Searched refs:ConsoleAPIType (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/inspector/
Dv8-console-message.cc23 String16 consoleAPITypeValue(ConsoleAPIType type) { in consoleAPITypeValue()
25 case ConsoleAPIType::kLog: in consoleAPITypeValue()
27 case ConsoleAPIType::kDebug: in consoleAPITypeValue()
29 case ConsoleAPIType::kInfo: in consoleAPITypeValue()
31 case ConsoleAPIType::kError: in consoleAPITypeValue()
33 case ConsoleAPIType::kWarning: in consoleAPITypeValue()
35 case ConsoleAPIType::kClear: in consoleAPITypeValue()
37 case ConsoleAPIType::kDir: in consoleAPITypeValue()
39 case ConsoleAPIType::kDirXML: in consoleAPITypeValue()
41 case ConsoleAPIType::kTable: in consoleAPITypeValue()
[all …]
Dv8-console-message.h23 enum class ConsoleAPIType { enum
47 double timestamp, ConsoleAPIType,
65 ConsoleAPIType type() const;
93 ConsoleAPIType m_type;
Dv8-console.cc71 void reportCall(ConsoleAPIType type) { in reportCall()
78 void reportCallWithDefaultArgument(ConsoleAPIType type, in reportCallWithDefaultArgument()
86 void reportCallWithArgument(ConsoleAPIType type, const String16& message) { in reportCallWithArgument()
92 void reportCall(ConsoleAPIType type, in reportCall()
110 reportCall(ConsoleAPIType::kWarning, arguments); in reportDeprecatedCall()
284 ConsoleHelper(info).reportCall(ConsoleAPIType::kDebug); in debugCallback()
288 ConsoleHelper(info).reportCall(ConsoleAPIType::kError); in errorCallback()
292 ConsoleHelper(info).reportCall(ConsoleAPIType::kInfo); in infoCallback()
296 ConsoleHelper(info).reportCall(ConsoleAPIType::kLog); in logCallback()
300 ConsoleHelper(info).reportCall(ConsoleAPIType::kWarning); in warnCallback()
[all …]