Searched refs:ScriptDebugListener (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | WorkerScriptDebugServer.h | 48 void addListener(ScriptDebugListener*); 49 void removeListener(ScriptDebugListener*); 54 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) OVERRIDE; 58 typedef HashMap<WorkerGlobalScope*, ScriptDebugListener*> ListenersMap; 59 ScriptDebugListener* m_listener;
|
D | PageScriptDebugServer.h | 54 void addListener(ScriptDebugListener*, Page*); 55 void removeListener(ScriptDebugListener*, Page*); 83 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) OVERRIDE; 87 typedef HashMap<Page*, ScriptDebugListener*> ListenersMap;
|
D | ScriptDebugServer.h | 51 class ScriptDebugListener; variable 122 virtual ScriptDebugListener* getDebugListenerForContext(v8::Handle<v8::Context>) = 0; 132 …void dispatchDidParseSource(ScriptDebugListener*, v8::Handle<v8::Object> sourceObject, CompileResu… 157 …void handleV8AsyncTaskEvent(ScriptDebugListener*, ScriptState* pausedScriptState, v8::Handle<v8::O… 159 …void handleV8PromiseEvent(ScriptDebugListener*, ScriptState* pausedScriptState, v8::Handle<v8::Obj…
|
D | WorkerScriptDebugServer.cpp | 53 void WorkerScriptDebugServer::addListener(ScriptDebugListener* listener) in addListener() 78 void WorkerScriptDebugServer::removeListener(ScriptDebugListener* listener) in removeListener() 92 ScriptDebugListener* WorkerScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context>) in getDebugListenerForContext()
|
D | PageScriptDebugServer.cpp | 109 void PageScriptDebugServer::addListener(ScriptDebugListener* listener, Page* page) in addListener() 144 void PageScriptDebugServer::removeListener(ScriptDebugListener* listener, Page* page) in removeListener() 207 ScriptDebugListener* PageScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context> cont… in getDebugListenerForContext() 226 if (ScriptDebugListener* listener = m_listenersMap.get(m_pausedPage)) in runMessageLoopOnPause()
|
D | ScriptDebugServer.cpp | 441 ScriptDebugListener* listener = getDebugListenerForContext(pausedScriptState->context()); in handleProgramBreak() 457 …ScriptDebugListener::SkipPauseRequest result = listener->didPause(pausedScriptState, currentCallFr… in handleProgramBreak() 458 if (result == ScriptDebugListener::NoSkip) { in handleProgramBreak() 466 if (result == ScriptDebugListener::StepInto) { in handleProgramBreak() 469 } else if (result == ScriptDebugListener::StepOut) { in handleProgramBreak() 504 ScriptDebugListener* listener = getDebugListenerForContext(eventContext); in handleV8DebugEvent() 535 void ScriptDebugServer::handleV8AsyncTaskEvent(ScriptDebugListener* listener, ScriptState* pausedSc… in handleV8AsyncTaskEvent() 548 void ScriptDebugServer::handleV8PromiseEvent(ScriptDebugListener* listener, ScriptState* pausedScri… in handleV8PromiseEvent() 565 void ScriptDebugServer::dispatchDidParseSource(ScriptDebugListener* listener, v8::Handle<v8::Object… in dispatchDidParseSource() 571 ScriptDebugListener::Script script; in dispatchDidParseSource()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorDebuggerAgent.cpp | 318 static String scriptSourceURL(const ScriptDebugListener::Script& script) in scriptSourceURL() 504 ScriptDebugListener::SkipPauseRequest InspectorDebuggerAgent::shouldSkipExceptionPause() in shouldSkipExceptionPause() 507 return ScriptDebugListener::NoSkip; in shouldSkipExceptionPause() 515 return ScriptDebugListener::NoSkip; in shouldSkipExceptionPause() 517 return ScriptDebugListener::Continue; in shouldSkipExceptionPause() 521 return ScriptDebugListener::NoSkip; in shouldSkipExceptionPause() 553 return ScriptDebugListener::Continue; in shouldSkipExceptionPause() 556 return ScriptDebugListener::NoSkip; in shouldSkipExceptionPause() 559 ScriptDebugListener::SkipPauseRequest InspectorDebuggerAgent::shouldSkipStepPause() in shouldSkipStepPause() 562 return ScriptDebugListener::NoSkip; in shouldSkipStepPause() [all …]
|
D | ScriptDebugListener.h | 46 class ScriptDebugListener { 77 virtual ~ScriptDebugListener() { } in ~ScriptDebugListener()
|
D | InspectorDebuggerAgent.h | 78 …rAgent : public InspectorBaseAgent<InspectorDebuggerAgent>, public ScriptDebugListener, public Ins…
|