HomeSort by relevance Sort by last modified time
    Searched refs:ScriptCallStack (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/Source/WebCore/inspector/
ScriptCallStack.h 43 class ScriptCallStack : public RefCounted<ScriptCallStack> {
47 static PassRefPtr<ScriptCallStack> create(Vector<ScriptCallFrame>&);
49 ~ScriptCallStack();
54 bool isEqual(ScriptCallStack*) const;
58 ScriptCallStack(Vector<ScriptCallFrame>&);
ScriptCallStack.cpp 32 #include "ScriptCallStack.h"
38 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames)
40 return adoptRef(new ScriptCallStack(frames));
43 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames)
48 ScriptCallStack::~ScriptCallStack()
52 const ScriptCallFrame &ScriptCallStack::at(size_t index) const
58 size_t ScriptCallStack::size() cons
    [all...]
InspectorConsoleAgent.h 50 class ScriptCallStack;
68 void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String& message, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
72 void stopTiming(const String& title, PassRefPtr<ScriptCallStack>);
73 void count(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
ConsoleMessage.h 47 class ScriptCallStack;
54 ConsoleMessage(MessageSource, MessageType, MessageLevel, const String& m, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
73 RefPtr<ScriptCallStack> m_callStack;
InspectorConsoleInstrumentation.h 36 #include "ScriptCallStack.h"
41 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
57 inline void InspectorInstrumentation::consoleCount(Page* page, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack)
73 inline void InspectorInstrumentation::stopConsoleTiming(Page* page, const String& title, PassRefPtr<ScriptCallStack> stack)
98 inline void InspectorInstrumentation::addProfile(Page* page, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
InspectorConsoleAgent.cpp 43 #include "ScriptCallStack.h"
127 void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
151 void InspectorConsoleAgent::stopTiming(const String& title, PassRefPtr<ScriptCallStack> callStack)
171 void InspectorConsoleAgent::count(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
InspectorInstrumentation.h 59 class ScriptCallStack;
137 static void addMessageToConsole(Page*, MessageSource, MessageType, MessageLevel, const String& message, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
139 static void consoleCount(Page*, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
141 static void stopConsoleTiming(Page*, const String& title, PassRefPtr<ScriptCallStack>);
146 static void addProfile(Page*, RefPtr<ScriptProfile>, PassRefPtr<ScriptCallStack>);
257 static void addMessageToConsoleImpl(InspectorAgent*, MessageSource, MessageType, MessageLevel, const String& message, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
259 static void consoleCountImpl(InspectorAgent*, PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
261 static void stopConsoleTimingImpl(InspectorAgent*, const String& title, PassRefPtr<ScriptCallStack>);
266 static void addProfileImpl(InspectorAgent*, RefPtr<ScriptProfile>, PassRefPtr<ScriptCallStack>);
    [all...]
ConsoleMessage.cpp 42 #include "ScriptCallStack.h"
59 ConsoleMessage::ConsoleMessage(MessageSource s, MessageType t, MessageLevel l, const String& m, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
InspectorAgent.h 83 class ScriptCallStack;
InspectorInstrumentation.cpp 56 #include "ScriptCallStack.h"
630 void InspectorInstrumentation::addMessageToConsoleImpl(InspectorAgent* inspectorAgent, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
640 void InspectorInstrumentation::consoleCountImpl(InspectorAgent* inspectorAgent, PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> stack)
650 void InspectorInstrumentation::stopConsoleTimingImpl(InspectorAgent* inspectorAgent, const String& title, PassRefPtr<ScriptCallStack> stack)
671 void InspectorInstrumentation::addProfileImpl(InspectorAgent* inspectorAgent, RefPtr<ScriptProfile> profile, PassRefPtr<ScriptCallStack> callStack)
    [all...]
TimelineRecordFactory.cpp 41 #include "ScriptCallStack.h"
51 RefPtr<ScriptCallStack> stackTrace = createScriptCallStack(5, true);
InspectorResourceAgent.cpp 60 #include "ScriptCallStack.h"
325 RefPtr<ScriptCallStack> callStack = createScriptCallStack(ScriptCallStack::maxCallStackSizeToCapture, true);
  /external/webkit/Source/WebCore/bindings/js/
ScriptCallStackFactory.h 43 class ScriptCallStack;
45 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed);
46 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState*, size_t maxStackSize);
ScriptCallStackFactory.cpp 37 #include "ScriptCallStack.h"
51 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t, bool)
56 PassRefPtr<ScriptCallStack> createScriptCallStack(JSC::ExecState* exec, size_t maxStackSize)
83 return ScriptCallStack::create(frames);
JSConsoleCustom.cpp 32 #include "ScriptCallStack.h"
60 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, 1));
71 RefPtr<ScriptCallStack> callStack(createScriptCallStack(exec, 1));
  /external/webkit/Source/WebCore/page/
Console.h 51 class ScriptCallStack;
90 void addMessage(MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack);
92 void debug(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
93 void error(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
94 void info(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
95 void log(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
96 void warn(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
97 void dir(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
98 void dirxml(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
99 void trace(PassRefPtr<ScriptArguments>, PassRefPtr<ScriptCallStack>);
    [all...]
Console.cpp 45 #include "ScriptCallStack.h"
140 void Console::addMessage(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
162 void Console::addMessage(MessageType type, MessageLevel level, PassRefPtr<ScriptArguments> prpArguments, PassRefPtr<ScriptCallStack> prpCallStack, bool acceptNoArguments)
165 RefPtr<ScriptCallStack> callStack = prpCallStack;
195 void Console::debug(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
201 void Console::error(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
206 void Console::info(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
211 void Console::log(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
216 void Console::dir(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack)
221 void Console::dirxml(PassRefPtr<ScriptArguments> arguments, PassRefPtr<ScriptCallStack> callStack
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptCallStackFactory.h 40 class ScriptCallStack;
49 PassRefPtr<ScriptCallStack> createScriptCallStack(v8::Handle<v8::StackTrace>, size_t maxStackSize);
50 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed = false);
ScriptCallStackFactory.cpp 37 #include "ScriptCallStack.h"
81 static PassRefPtr<ScriptCallStack> createScriptCallStack(v8::Handle<v8::StackTrace> stackTrace, size_t maxStackSize, bool emptyStackIsAllowed)
87 return ScriptCallStack::create(scriptCallFrames);
90 PassRefPtr<ScriptCallStack> createScriptCallStack(v8::Handle<v8::StackTrace> stackTrace, size_t maxStackSize)
95 PassRefPtr<ScriptCallStack> createScriptCallStack(size_t maxStackSize, bool emptyStackIsAllowed)
V8DOMWindowShell.cpp 43 #include "ScriptCallStack.h"
113 RefPtr<ScriptCallStack> callStack;
116 callStack = createScriptCallStack(stackTrace, ScriptCallStack::maxCallStackSizeToCapture);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ConsoleCustom.cpp 37 #include "ScriptCallStack.h"
69 RefPtr<ScriptCallStack> callStack(createScriptCallStack(ScriptCallStack::maxCallStackSizeToCapture));
79 RefPtr<ScriptCallStack> callStack(createScriptCallStack(ScriptCallStack::maxCallStackSizeToCapture));
91 RefPtr<ScriptCallStack> callStack(createScriptCallStack(1));
103 RefPtr<ScriptCallStack> callStack(createScriptCallStack(1));
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.h 65 class ScriptCallStack;
95 void reportException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>);
96 virtual void addMessage(MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>) = 0;
173 virtual void logExceptionToConsole(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>) = 0;
ScriptExecutionContext.cpp 43 #include "ScriptCallStack.h"
75 PendingException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
85 RefPtr<ScriptCallStack> m_callStack;
321 void ScriptExecutionContext::reportException(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack> callStack)
  /external/webkit/Source/WebCore/workers/
WorkerContext.h 107 virtual void addMessage(MessageSource, MessageType, MessageLevel, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>);
186 virtual void logExceptionToConsole(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>);
WorkerContext.cpp 50 #include "ScriptCallStack.h"
273 void WorkerContext::logExceptionToConsole(const String& errorMessage, int lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>)
278 void WorkerContext::addMessage(MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceURL, PassRefPtr<ScriptCallStack>)

Completed in 1108 milliseconds

1 2