Lines Matching refs:start_position
1625 void GetBreakablePositions(Iterator* it, int start_position, int end_position,
1628 if (it->position() >= start_position && it->position() < end_position) {
1635 void FindBreakablePositions(Handle<DebugInfo> debug_info, int start_position,
1640 GetBreakablePositions(&it, start_position, end_position, locations);
1663 bool Debug::GetPossibleBreakpoints(Handle<Script> script, int start_position,
1669 FindInnermostContainingFunctionInfo(script, start_position);
1679 FindBreakablePositions(debug_info, start_position, end_position, locations);
1685 if (!FindSharedFunctionInfosIntersectingRange(script, start_position,
1692 FindBreakablePositions(debug_info, start_position, end_position, locations);
1706 int start_position = shared.function_token_position();
1707 if (start_position == kNoSourcePosition) {
1708 start_position = shared.StartPosition();
1711 if (start_position > target_position_) return;
1724 if (current_start_position_ == start_position &&
1732 } else if (start_position < current_start_position_ ||
1738 current_start_position_ = start_position;
1779 const int start_position = outer_shared->StartPosition();
1781 if (start_position == end_position) return outer_shared;
1807 Handle<Script> script, int start_position, int end_position,
1820 if (info.EndPosition() < start_position ||
1824 candidateSubsumesRange |= info.StartPosition() <= start_position &&