Home | History | Annotate | Download | only in debug

Lines Matching defs:start_position

143   position_ = debug_info->shared()->start_position();
693 if (shared->start_position() > *source_position) {
694 *source_position = shared->start_position();
1317 void GetBreakablePositions(Iterator* it, int start_position, int end_position,
1320 it->SkipToPosition(start_position, alignment);
1322 it->position() >= start_position) {
1329 void FindBreakablePositions(Handle<DebugInfo> debug_info, int start_position,
1334 GetBreakablePositions(&it, start_position, end_position, alignment,
1339 GetBreakablePositions(&it, start_position, end_position, alignment,
1345 bool Debug::GetPossibleBreakpoints(Handle<Script> script, int start_position,
1353 if (info->end_position() < start_position ||
1354 info->start_position() >= end_position) {
1380 FindBreakablePositions(debug_info, start_position, end_position,
1412 int start_position = shared->function_token_position();
1413 if (start_position == kNoSourcePosition) {
1414 start_position = shared->start_position();
1417 if (start_position > target_position_) return;
1421 if (current_start_position_ == start_position &&
1429 } else if (start_position < current_start_position_ ||
1435 current_start_position_ = start_position;
1963 GetDebugLocation(script, shared->start_position());