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/v8/
WorkerScriptDebugServer.h
51
void addListener(
ScriptDebugListener
*);
52
void removeListener(
ScriptDebugListener
*);
57
virtual
ScriptDebugListener
* getDebugListenerForContext(v8::Handle<v8::Context>);
61
typedef HashMap<WorkerGlobalScope*,
ScriptDebugListener
*> ListenersMap;
62
ScriptDebugListener
* m_listener;
PageScriptDebugServer.h
52
void addListener(
ScriptDebugListener
*, Page*);
53
void removeListener(
ScriptDebugListener
*, Page*);
75
virtual
ScriptDebugListener
* getDebugListenerForContext(v8::Handle<v8::Context>);
79
typedef HashMap<Page*,
ScriptDebugListener
*> ListenersMap;
WorkerScriptDebugServer.cpp
35
#include "core/inspector/
ScriptDebugListener
.h"
54
void WorkerScriptDebugServer::addListener(
ScriptDebugListener
* listener)
78
void WorkerScriptDebugServer::removeListener(
ScriptDebugListener
* listener)
91
ScriptDebugListener
* WorkerScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context>)
ScriptDebugServer.h
37
#include "core/inspector/
ScriptDebugListener
.h"
49
class
ScriptDebugListener
;
111
virtual
ScriptDebugListener
* getDebugListenerForContext(v8::Handle<v8::Context>) = 0;
122
void dispatchDidParseSource(
ScriptDebugListener
* listener, v8::Handle<v8::Object> sourceObject);
138
bool executeSkipPauseRequest(
ScriptDebugListener
::SkipPauseRequest, v8::Handle<v8::Object> executionState);
PageScriptDebugServer.cpp
42
#include "core/inspector/
ScriptDebugListener
.h"
91
void PageScriptDebugServer::addListener(
ScriptDebugListener
* listener, Page* page)
124
void PageScriptDebugServer::removeListener(
ScriptDebugListener
* listener, Page* page)
176
ScriptDebugListener
* PageScriptDebugServer::getDebugListenerForContext(v8::Handle<v8::Context> context)
195
if (
ScriptDebugListener
* listener = m_listenersMap.get(m_pausedPage))
ScriptDebugServer.cpp
43
#include "core/inspector/
ScriptDebugListener
.h"
379
ScriptDebugListener
* listener = getDebugListenerForContext(m_pausedContext);
415
bool ScriptDebugServer::executeSkipPauseRequest(
ScriptDebugListener
::SkipPauseRequest request, v8::Handle<v8::Object> executionState)
418
case
ScriptDebugListener
::NoSkip:
420
case
ScriptDebugListener
::Continue:
422
case
ScriptDebugListener
::StepInto:
423
case
ScriptDebugListener
::StepOut:
447
ScriptDebugListener
* listener = getDebugListenerForContext(eventContext);
480
ScriptDebugListener
::SkipPauseRequest skipRequest;
492
void ScriptDebugServer::dispatchDidParseSource(
ScriptDebugListener
* listener, v8::Handle<v8::Object> object
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptDebugListener.h
43
class
ScriptDebugListener
{
66
virtual ~
ScriptDebugListener
() { }
InspectorDebuggerAgent.cpp
468
ScriptDebugListener
::SkipPauseRequest InspectorDebuggerAgent::shouldSkipExceptionPause(RefPtr<JavaScriptCallFrame>& topFrame)
471
return
ScriptDebugListener
::Continue;
473
return
ScriptDebugListener
::NoSkip;
477
return
ScriptDebugListener
::Continue;
481
return
ScriptDebugListener
::NoSkip;
513
return
ScriptDebugListener
::Continue;
516
return
ScriptDebugListener
::NoSkip;
519
ScriptDebugListener
::SkipPauseRequest InspectorDebuggerAgent::shouldSkipBreakpointPause(RefPtr<JavaScriptCallFrame>& topFrame)
522
return
ScriptDebugListener
::Continue;
524
return
ScriptDebugListener
::NoSkip
[
all
...]
InspectorDebuggerAgent.h
40
#include "core/inspector/
ScriptDebugListener
.h"
64
class InspectorDebuggerAgent : public InspectorBaseAgent<InspectorDebuggerAgent>, public
ScriptDebugListener
, public InspectorBackendDispatcher::DebuggerCommandHandler {
Completed in 75 milliseconds