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 102 v8::Handle<v8::Value> breakpointId = v8::Debug::Call(setBreakpointFunction, info);
103 if (breakpointId.IsEmpty() || !breakpointId->IsString())
107 return toCoreString(breakpointId.As<v8::String>());
110 void ScriptDebugServer::removeBreakpoint(const String& breakpointId)
117 info->Set(v8AtomicString(m_isolate, "breakpointId"), v8String(debuggerContext->GetIsolate(), breakpointId));
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 51 using WebCore::TypeBuilder::Debugger::BreakpointId;
310 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, BreakpointId* outBreakpointId, RefPtr<Array<TypeBuilder::Debugger::Location> >& locations)
334 String breakpointId = (isRegex ? "/" + url + "/" : url) + ':' + String::number(lineNumber) + ':' + String::number(columnNumber);
336 if (breakpointsCookie->find(breakpointId) != breakpointsCookie->end()) {
341 breakpointsCookie->setObject(breakpointId, buildObjectForBreakpointCookie(url, lineNumber, columnNumber, condition, isRegex, isAntiBreakpointValue));
349 RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(breakpointId, it->key, breakpoint, UserBreakpointSource);
354 *outBreakpointId = breakpointId;
369 void InspectorDebuggerAgent::setBreakpoint(ErrorString* errorString, const RefPtr<JSONObject>& location, const String* const optionalCondition, BreakpointId* outBreakpointId, RefPtr<TypeBuilder::Debugger::Location>& actualLocation)
380 String breakpointId = generateBreakpointId(scriptId, lineNumber, columnNumber, UserBreakpointSource);
381 if (m_breakpointIdToDebugServerBreakpointIds.find(breakpointId) != m_breakpointIdToDebugServerBreakpointIds.end())
    [all...]

Completed in 300 milliseconds