OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptDebugListener
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
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;
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;
WorkerScriptDebugServer.cpp
35
#include "core/inspector/
ScriptDebugListener
.h"
53
void WorkerScriptDebugServer::addListener(
ScriptDebugListener
* listener)
78
void WorkerScriptDebugServer::removeListener(
ScriptDebugListener
* listener)
92
ScriptDebugListener
* WorkerScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context>)
ScriptDebugServer.h
38
#include "core/inspector/
ScriptDebugListener
.h"
51
class
ScriptDebugListener
;
122
virtual
ScriptDebugListener
* getDebugListenerForContext(v8::Handle<v8::Context>) = 0;
132
void dispatchDidParseSource(
ScriptDebugListener
*, v8::Handle<v8::Object> sourceObject, CompileResult);
157
void handleV8AsyncTaskEvent(
ScriptDebugListener
*, ScriptState* pausedScriptState, v8::Handle<v8::Object> executionState, v8::Handle<v8::Object> eventData);
159
void handleV8PromiseEvent(
ScriptDebugListener
*, ScriptState* pausedScriptState, v8::Handle<v8::Object> executionState, v8::Handle<v8::Object> eventData);
PageScriptDebugServer.cpp
47
#include "core/inspector/
ScriptDebugListener
.h"
109
void PageScriptDebugServer::addListener(
ScriptDebugListener
* listener, Page* page)
144
void PageScriptDebugServer::removeListener(
ScriptDebugListener
* listener, Page* page)
207
ScriptDebugListener
* PageScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context> context)
226
if (
ScriptDebugListener
* listener = m_listenersMap.get(m_pausedPage))
ScriptDebugServer.cpp
43
#include "core/inspector/
ScriptDebugListener
.h"
441
ScriptDebugListener
* listener = getDebugListenerForContext(pausedScriptState->context());
457
ScriptDebugListener
::SkipPauseRequest result = listener->didPause(pausedScriptState, currentCallFrames(), ScriptValue(pausedScriptState, exception), breakpointIds);
458
if (result ==
ScriptDebugListener
::NoSkip) {
466
if (result ==
ScriptDebugListener
::StepInto) {
469
} else if (result ==
ScriptDebugListener
::StepOut) {
504
ScriptDebugListener
* listener = getDebugListenerForContext(eventContext);
535
void ScriptDebugServer::handleV8AsyncTaskEvent(
ScriptDebugListener
* listener, ScriptState* pausedScriptState, v8::Handle<v8::Object> executionState, v8::Handle<v8::Object> eventData)
548
void ScriptDebugServer::handleV8PromiseEvent(
ScriptDebugListener
* listener, ScriptState* pausedScriptState, v8::Handle<v8::Object> executionState, v8::Handle<v8::Object> eventData)
565
void ScriptDebugServer::dispatchDidParseSource(
ScriptDebugListener
* listener, v8::Handle<v8::Object> object, CompileResult compileResult
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptDebugListener.h
46
class
ScriptDebugListener
{
77
virtual ~
ScriptDebugListener
() { }
InspectorDebuggerAgent.cpp
318
static String scriptSourceURL(const
ScriptDebugListener
::Script& script)
504
ScriptDebugListener
::SkipPauseRequest InspectorDebuggerAgent::shouldSkipExceptionPause()
507
return
ScriptDebugListener
::NoSkip;
509
// FIXME: Fast return: if (!m_skipContentScripts && !m_cachedSkipStackRegExp && !has_any_anti_breakpoint) return
ScriptDebugListener
::NoSkip;
515
return
ScriptDebugListener
::NoSkip;
517
return
ScriptDebugListener
::Continue;
521
return
ScriptDebugListener
::NoSkip;
553
return
ScriptDebugListener
::Continue;
556
return
ScriptDebugListener
::NoSkip;
559
ScriptDebugListener
::SkipPauseRequest InspectorDebuggerAgent::shouldSkipStepPause(
[
all
...]
InspectorDebuggerAgent.h
42
#include "core/inspector/
ScriptDebugListener
.h"
78
class InspectorDebuggerAgent : public InspectorBaseAgent<InspectorDebuggerAgent>, public
ScriptDebugListener
, public InspectorBackendDispatcher::DebuggerCommandHandler {
Completed in 90 milliseconds