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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 261 void InspectorDebuggerAgent::setBreakpointByUrl(ErrorString* errorString, int lineNumber, const String* const optionalURL, const String* const optionalURLRegex, const int* const optionalColumnNumber, const String* const optionalCondition, const bool* isAntiBreakpoint, TypeBuilder::Debugger::BreakpointId* outBreakpointId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations)
285 String breakpointId = (isRegex ? "/" + url + "/" : url) + ':' + String::number(lineNumber) + ':' + String::number(columnNumber);
287 if (breakpointsCookie->find(breakpointId) != breakpointsCookie->end()) {
292 breakpointsCookie->setObject(breakpointId, buildObjectForBreakpointCookie(url, lineNumber, columnNumber, condition, isRegex, isAntiBreakpointValue));
300 RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(breakpointId, it->key, breakpoint, UserBreakpointSource);
305 *outBreakpointId = breakpointId;
320 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, const RefPtr<JSONObject>& location, const String* const optionalCondition, TypeBuilder::Debugger::BreakpointId* outBreakpointId, RefPtr<TypeBuilder::Debugger::Location>& actualLocation)
331 String breakpointId = generateBreakpointId(scriptId, lineNumber, columnNumber, UserBreakpointSource);
332 if (m_breakpointIdToDebugServerBreakpointIds.find(breakpointId) != m_breakpointIdToDebugServerBreakpointIds.end()) {
337 actualLocation = resolveBreakpoint(breakpointId, scriptId, breakpoint, UserBreakpointSource)
    [all...]
InspectorDebuggerAgent.h 90 virtual void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optionalURL, const String* optionalURLRegex, const int* optionalColumnNumber, const String* optionalCondition, const bool* isAntiBreakpoint, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations);
91 virtual void setBreakpoint(ErrorString*, const RefPtr<JSONObject>& location, const String* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Debugger::Location>& actualLocation);
92 virtual void removeBreakpoint(ErrorString*, const String& breakpointId);
180 PassRefPtr<TypeBuilder::Debugger::Location> resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint&, BreakpointSource);
181 void removeBreakpoint(const String& breakpointId);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMBreakpointsSidebarPane.js 175 var breakpointId = this._createBreakpointId(node.id, type);
176 if (breakpointId in this._breakpointElements)
211 this._breakpointElements[breakpointId] = element;
227 var breakpointId = this._createBreakpointId(node.id, type);
228 var element = this._breakpointElements[breakpointId];
233 delete this._breakpointElements[breakpointId];
262 var breakpointId = this._createBreakpointId(auxData.nodeId, auxData.type);
263 var element = this._breakpointElements[breakpointId];
DebuggerModel.js 171 * @param {function(?DebuggerAgent.BreakpointId, Array.<WebInspector.DebuggerModel.Location>):void=} callback
187 * @param {function(?DebuggerAgent.BreakpointId, Array.<WebInspector.DebuggerModel.Location>)=} callback
204 * @param {DebuggerAgent.BreakpointId} breakpointId
207 function didSetBreakpoint(error, breakpointId, locations)
211 callback(error ? null : breakpointId, rawLocations);
221 * @param {function(?DebuggerAgent.BreakpointId, Array.<WebInspector.DebuggerModel.Location>)=} callback
228 * @param {DebuggerAgent.BreakpointId} breakpointId
231 function didSetBreakpoint(error, breakpointId, actualLocation
    [all...]
BreakpointManager.js 310 var breakpointId = /** @type {DebuggerAgent.BreakpointId} */ (event.data.breakpointId);
312 var breakpoint = this._breakpointForDebuggerId[breakpointId];
522 * @param {?DebuggerAgent.BreakpointId} breakpointId
525 _didSetBreakpointInDebugger: function(breakpointId, locations)
527 if (!breakpointId) {
533 this._debuggerId = breakpointId;
534 this._breakpointManager._breakpointForDebuggerId[breakpointId] = this
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptDebugServer.h 59 void removeBreakpoint(const String& breakpointId);
ScriptDebugServer.cpp 156 v8::Handle<v8::Value> breakpointId = v8::Debug::Call(setBreakpointFunction, args);
157 if (!breakpointId->IsString())
161 return toWebCoreString(breakpointId->ToString());
164 void ScriptDebugServer::removeBreakpoint(const String& breakpointId)
171 args->Set(v8::String::NewSymbol("breakpointId"), v8String(breakpointId, debuggerContext->GetIsolate()));
DebuggerScript.js 179 Debug.findBreakPoint(args.breakpointId, true);

Completed in 141 milliseconds