HomeSort by relevance Sort by last modified time
    Searched refs:debuggerAgent (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.cpp 116 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
117 debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource);
122 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
123 debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource);
135 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
136 debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCommandBreakpointSource, builder.toString());
141 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
142 debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCommandBreakpointSource);
InspectorInstrumentation.cpp 93 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
94 return debuggerAgent->isPaused();
139 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
140 return debuggerAgent->preprocess(frame, sourceCode);
146 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
147 return debuggerAgent->preprocessEventListener(frame, source, url, functionName);
InspectorController.cpp 167 InspectorDebuggerAgent* debuggerAgent = debuggerAgentPtr.get();
170 m_agents.append(InspectorDOMDebuggerAgent::create(m_domAgent, debuggerAgent));
389 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents->inspectorDebuggerAgent()) {
391 debuggerAgent->resume(&error);
InspectorDOMDebuggerAgent.cpp 77 PassOwnPtr<InspectorDOMDebuggerAgent> InspectorDOMDebuggerAgent::create(InspectorDOMAgent* domAgent, InspectorDebuggerAgent* debuggerAgent)
79 return adoptPtr(new InspectorDOMDebuggerAgent(domAgent, debuggerAgent));
82 InspectorDOMDebuggerAgent::InspectorDOMDebuggerAgent(InspectorDOMAgent* domAgent, InspectorDebuggerAgent* debuggerAgent)
85 , m_debuggerAgent(debuggerAgent)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Script.js 124 this.target().debuggerAgent().getScriptSource(this.scriptId, didGetScriptSource.bind(this));
155 this.target().debuggerAgent().searchInContent(this.scriptId, query, caseSensitive, isRegex, innerCallback);
173 * @param {function(?Protocol.Error, !DebuggerAgent.SetScriptSourceError=, !Array.<!DebuggerAgent.CallFrame>=, !DebuggerAgent.StackTrace=, boolean=)} callback
180 * @param {!DebuggerAgent.SetScriptSourceError=} errorData
181 * @param {!Array.<!DebuggerAgent.CallFrame>=} callFrames
183 * @param {!DebuggerAgent.StackTrace=} asyncStackTrace
201 this.target().debuggerAgent().setScriptSource(this.scriptId, newSource, undefined, didEditScriptSource.bind(this));
ScriptSnippetModel.js 243 target.debuggerAgent().compileScript(expression, evaluationUrl, executionContext.id, compileCallback.bind(this, target));
248 * @param {!DebuggerAgent.ScriptId=} scriptId
249 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails
275 * @param {!DebuggerAgent.ScriptId} scriptId
282 target.debuggerAgent().runScript(scriptId, executionContext.id, "console", false, runCallback.bind(this, target));
288 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails
329 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails
RemoteObject.js 139 * @param {function(?DebuggerAgent.FunctionDetails)} callback
577 * @param {function(?DebuggerAgent.FunctionDetails)} callback
673 this._debuggerAgent = target.debuggerAgent();
DebuggerModel.js 41 this._agent = target.debuggerAgent();
257 * @param {function(?DebuggerAgent.BreakpointId, !Array.<!WebInspector.DebuggerModel.Location>):void=} callback
273 * @param {function(?DebuggerAgent.BreakpointId, !Array.<!WebInspector.DebuggerModel.Location>)=} callback
290 * @param {!DebuggerAgent.BreakpointId} breakpointId
291 * @param {!Array.<!DebuggerAgent.Location>} locations
307 * @param {function(?DebuggerAgent.BreakpointId, !Array.<!WebInspector.DebuggerModel.Location>)=} callback
315 * @param {!DebuggerAgent.BreakpointId} breakpointId
316 * @param {!DebuggerAgent.Location} actualLocation
330 * @param {!DebuggerAgent.BreakpointId} breakpointId
350 * @param {!DebuggerAgent.BreakpointId} breakpointI
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
SourcesPanel.js     [all...]

Completed in 1421 milliseconds