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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
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()));
  /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...]

Completed in 59 milliseconds