HomeSort by relevance Sort by last modified time
    Searched defs:ScriptDebugServer (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/bindings/v8/
ScriptDebugServer.h 50 class ScriptDebugServer {
51 WTF_MAKE_NONCOPYABLE(ScriptDebugServer);
78 void recompileAllJSFunctions(Timer<ScriptDebugServer>* = 0) { }
91 ScriptDebugServer();
92 ~ScriptDebugServer() { }
ScriptDebugServer.cpp 32 #include "ScriptDebugServer.h"
48 ClientDataImpl(PassOwnPtr<ScriptDebugServer::Task> task) : m_task(task) { }
50 ScriptDebugServer::Task* task() const { return m_task.get(); }
52 OwnPtr<ScriptDebugServer::Task> m_task;
57 ScriptDebugServer::ScriptDebugServer()
63 String ScriptDebugServer::setBreakpoint(const String& sourceID, const ScriptBreakpoint& scriptBreakpoint, int* actualLineNumber, int* actualColumnNumber)
84 void ScriptDebugServer::removeBreakpoint(const String& breakpointId)
97 void ScriptDebugServer::clearBreakpoints()
108 void ScriptDebugServer::setBreakpointsActivated(bool activated
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptDebugServer.h 56 class ScriptDebugServer : protected JSC::Debugger {
57 WTF_MAKE_NONCOPYABLE(ScriptDebugServer); WTF_MAKE_FAST_ALLOCATED;
84 virtual void recompileAllJSFunctions(Timer<ScriptDebugServer>* = 0) = 0;
90 typedef void (ScriptDebugServer::*JavaScriptExecutionCallback)(ScriptDebugListener*);
92 ScriptDebugServer();
93 ~ScriptDebugServer();
137 Timer<ScriptDebugServer> m_recompileTimer;
ScriptDebugServer.cpp 31 #include "ScriptDebugServer.h"
51 ScriptDebugServer::ScriptDebugServer()
59 , m_recompileTimer(this, &ScriptDebugServer::recompileAllJSFunctions)
63 ScriptDebugServer::~ScriptDebugServer()
68 String ScriptDebugServer::setBreakpoint(const String& sourceID, const ScriptBreakpoint& scriptBreakpoint, int* actualLineNumber, int* actualColumnNumber)
85 void ScriptDebugServer::removeBreakpoint(const String& breakpointId)
103 bool ScriptDebugServer::hasBreakpoint(intptr_t sourceID, const TextPosition0& position) const
131 void ScriptDebugServer::clearBreakpoints(
    [all...]

Completed in 72 milliseconds