Home
last modified time | relevance | path

Searched refs:ScriptCallStack (Results 1 – 25 of 35) sorted by relevance

12

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/page/
H A DConsole.h51 class ScriptCallStack; variable
91 void debug(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
92 void error(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
93 void info(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
94 void log(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
95 void warn(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
96 void dir(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
97 void dirxml(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
98 void trace(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
100 void count(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
[all …]
H A DConsole.cpp162 RefPtr<ScriptCallStack> callStack = prpCallStack; in addMessage()
192 void Console::debug(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in debug()
198 void Console::error(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in error()
203 void Console::info(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in info()
208 void Console::log(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in log()
213 void Console::dir(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in dir()
226 RefPtr<ScriptCallStack> callStack = prpCallStack; in trace()
247 void Console::count(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in count()
252 void Console::markTimeline(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack>) in markTimeline() argument
308 void Console::group(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in group()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/inspector/
H A DScriptCallStack.cpp38 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames) in create()
40 return adoptRef(new ScriptCallStack(frames)); in create()
43 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames) in ScriptCallStack() function in WebCore::ScriptCallStack
48 ScriptCallStack::~ScriptCallStack() in ~ScriptCallStack()
52 const ScriptCallFrame &ScriptCallStack::at(size_t index) const in at()
58 size_t ScriptCallStack::size() const in size()
63 bool ScriptCallStack::isEqual(ScriptCallStack* o) const in isEqual()
81 PassRefPtr<InspectorArray> ScriptCallStack::buildInspectorArray() const in buildInspectorArray()
H A DScriptCallStack.h43 class ScriptCallStack : public RefCounted<ScriptCallStack> {
47 static PassRefPtr<ScriptCallStack> create(Vector<ScriptCallFrame>&);
49 ~ScriptCallStack();
54 bool isEqual(ScriptCallStack*) const;
58 ScriptCallStack(Vector<ScriptCallFrame>&);
H A DInspectorConsoleAgent.h50 class ScriptCallStack; variable
68 …pe, MessageLevel, const String& message, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
72 void stopTiming(const String& title, PassRefPtr<ScriptCallStack>);
73 void count(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
H A DConsoleMessage.h47 class ScriptCallStack; variable
54 …sageType, MessageLevel, const String& m, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
73 RefPtr<ScriptCallStack> m_callStack;
H A DInspectorConsoleInstrumentation.h41 …onst String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in addMessageToConsole()
57 …:consoleCount(Page* page, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack) in consoleCount()
73 …trumentation::stopConsoleTiming(Page* page, const String& title, PassRefPtr<ScriptCallStack> stack) in stopConsoleTiming()
98 …ation::addProfile(Page* page, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack) in addProfile()
H A DInspectorConsoleAgent.cpp127 …onst String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in addMessageToConsole()
151 void InspectorConsoleAgent::stopTiming(const String& title, PassRefPtr<ScriptCallStack> callStack) in stopTiming()
171 void InspectorConsoleAgent::count(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack in count()
H A DInspectorInstrumentation.h59 class ScriptCallStack; variable
139 …pe, MessageLevel, const String& message, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
141 static void consoleCount(Page*, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
143 static void stopConsoleTiming(Page*, const String& title, PassRefPtr<ScriptCallStack>);
148 static void addProfile(Page*, RefPtr<ScriptProfile>, PassRefPtr<ScriptCallStack>);
262 …pe, MessageLevel, const String& message, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
264 …c void consoleCountImpl(InspectorAgent*, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
266 …atic void stopConsoleTimingImpl(InspectorAgent*, const String& title, PassRefPtr<ScriptCallStack>);
271 static void addProfileImpl(InspectorAgent*, RefPtr<ScriptProfile>, PassRefPtr<ScriptCallStack>);
H A DInspectorInstrumentation.cpp628 …onst String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in addMessageToConsoleImpl()
638 …torAgent* inspectorAgent, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack) in consoleCountImpl()
648 …eTimingImpl(InspectorAgent* inspectorAgent, const String& title, PassRefPtr<ScriptCallStack> stack) in stopConsoleTimingImpl()
669 …spectorAgent* inspectorAgent, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack) in addProfileImpl()
H A DInspectorResourceAgent.cpp208 …RefPtr<ScriptCallStack> callStack = createScriptCallStack(ScriptCallStack::maxCallStackSizeToCaptu… in willSendRequest()
H A DConsoleMessage.cpp59 …l l, const String& m, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack) in ConsoleMessage()
H A DInspectorAgent.h84 class ScriptCallStack; variable
H A DTimelineRecordFactory.cpp51 RefPtr<ScriptCallStack> stackTrace = createScriptCallStack(5, true); in createGenericRecord()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/generated/
H A DJSConsole.cpp156 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionDebug()
171 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionError()
186 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionInfo()
201 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionLog()
216 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionWarn()
231 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionDir()
246 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionDirxml()
261 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionTrace()
276 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionAssert()
294 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsConsolePrototypeFunctionCount()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/bindings/js/
H A DScriptCallStackFactory.h43 class ScriptCallStack; variable
45 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed);
46 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState*, size_t maxStackSize);
H A DScriptCallStackFactory.cpp51 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t, bool) in createScriptCallStack()
56 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState* exec, size_t maxStackSize) in createScriptCallStack()
83 return ScriptCallStack::create(frames); in createScriptCallStack()
H A DJSConsoleCustom.cpp60 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, 1)); in profile()
71 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, 1)); in profileEnd()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/dom/
H A DScriptExecutionContext.h65 class ScriptCallStack; variable
95 …(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>);
96 …st String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>) = 0;
173 …st String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>) = 0;
H A DScriptExecutionContext.cpp75 …ring& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) in PendingException()
85 RefPtr<ScriptCallStack> m_callStack;
321 …ring& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack) in reportException()
H A DDocument.h945 … const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>);
1091 …(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/workers/
H A DWorkerContext.h107 … const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>);
186 …(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>);
H A DWorkerContext.cpp272 …e(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>) in logExceptionToConsole() argument
277 …, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>) in addMessage() argument
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/bindings/scripts/test/V8/
H A DV8TestObj.cpp784 …size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapt… in customArgsAndExceptionCallback()
785 RefPtr<ScriptCallStack> callStack(createScriptCallStack(maxStackSize)); in customArgsAndExceptionCallback()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestObj.cpp1075 …size_t maxStackSize = imp->shouldCaptureFullStackTrace() ? ScriptCallStack::maxCallStackSizeToCapt… in jsTestObjPrototypeFunctionCustomArgsAndException()
1076 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, maxStackSize)); in jsTestObjPrototypeFunctionCustomArgsAndException()

12