Lines Matching defs:location
233 script.location(static_cast<int>(bestMatch));
583 "Breakpoint at specified location already exists.");
593 std::unique_ptr<protocol::Debugger::Location> location = setBreakpointImpl(
595 if (location && type != BreakpointType::kByUrlRegex) {
596 hint = breakpointHint(*script.second, location->getLineNumber(),
597 location->getColumnNumber(columnNumber));
599 if (location) (*locations)->emplace_back(std::move(location));
612 std::unique_ptr<protocol::Debugger::Location> location,
616 BreakpointType::kByScriptId, location->getScriptId(),
617 location->getLineNumber(), location->getColumnNumber(0));
623 "Breakpoint at specified location already exists.");
625 *actualLocation = setBreakpointImpl(breakpointId, location->getScriptId(),
627 location->getLineNumber(),
628 location->getColumnNumber(0));
653 "Breakpoint at specified location already exists.");
824 std::unique_ptr<protocol::Debugger::Location> location,
828 ScriptsMap::iterator it = m_scripts.find(location->getScriptId());
830 return Response::ServerError("Cannot continue to specified location");
836 return Response::ServerError("Cannot continue to specified location");
840 m_session->contextGroupId(), script, std::move(location),
918 const std::pair<int, int> location = std::make_pair(line, column);
919 auto itLowerBound = std::lower_bound(ranges.begin(), ranges.end(), location,
928 const bool isSameAsLowerBound = location == *itLowerBound;
963 v8::debug::Location location(lineNumber, columnNumber);
970 if (!script->setBreakpoint(condition, &location, &debuggerBreakpointId)) {
981 .setLineNumber(location.GetLineNumber())
982 .setColumnNumber(location.GetColumnNumber())
1479 std::unique_ptr<protocol::Debugger::Location> location =
1490 .setLocation(std::move(location))
1714 std::unique_ptr<protocol::Debugger::Location> location =
1717 if (location)
1718 m_frontend.breakpointResolved(breakpointId, std::move(location));