Lines Matching refs:start_position
1278 void GetBreakablePositions(Iterator* it, int start_position, int end_position, in GetBreakablePositions() argument
1281 if (it->position() >= start_position && it->position() < end_position) { in GetBreakablePositions()
1288 void FindBreakablePositions(Handle<DebugInfo> debug_info, int start_position, in FindBreakablePositions() argument
1293 GetBreakablePositions(&it, start_position, end_position, locations); in FindBreakablePositions()
1297 bool Debug::GetPossibleBreakpoints(Handle<Script> script, int start_position, in GetPossibleBreakpoints() argument
1302 FindSharedFunctionInfoInScript(script, start_position); in GetPossibleBreakpoints()
1312 FindBreakablePositions(debug_info, start_position, end_position, locations); in GetPossibleBreakpoints()
1322 if (info->EndPosition() < start_position || in GetPossibleBreakpoints()
1350 FindBreakablePositions(debug_info, start_position, end_position, in GetPossibleBreakpoints()
1368 int start_position = shared->function_token_position(); in NewCandidate() local
1369 if (start_position == kNoSourcePosition) { in NewCandidate()
1370 start_position = shared->StartPosition(); in NewCandidate()
1373 if (start_position > target_position_) return; in NewCandidate()
1377 if (current_start_position_ == start_position && in NewCandidate()
1385 } else if (start_position < current_start_position_ || in NewCandidate()
1391 current_start_position_ = start_position; in NewCandidate()