Lines Matching defs:end

167         if (export_names_->find(exp_key) != export_names_->end()) continue;
172 if (it != export_names_->end()) return it->second;
189 if (it != import_names_->end()) return it->second;
228 if (std::binary_search(breakpoints.begin(), breakpoints.end(), offset)) {
256 end = cached_debugging_code_.end();
257 it != end; ++it) {
345 std::lower_bound(breakpoints.begin(), breakpoints.end(), offset);
346 if (insertion_point != breakpoints.end() && *insertion_point == offset) {
352 DCHECK(std::is_sorted(all_breakpoints.begin(), all_breakpoints.end()));
355 all_breakpoints.end(), offset);
357 insertion_point != all_breakpoints.end() && *insertion_point == offset;
379 if (it == data.second.breakpoints_per_function.end()) continue;
382 return {breakpoints.begin(), breakpoints.end()};
439 if (it != per_isolate_data_.end()) it->second.stepping_frame = NO_ID;
447 return it != per_isolate_data_.end() &&
468 std::lower_bound(breakpoints.begin(), breakpoints.end(), offset);
469 if (insertion_point == breakpoints.end()) return;
475 DCHECK(std::is_sorted(remaining.begin(), remaining.end()));
476 if (std::binary_search(remaining.begin(), remaining.end(), offset)) return;
493 return it == debug_side_tables_.end() ? nullptr : it->second.get();
498 DCHECK(std::is_sorted(remaining.begin(), remaining.end()));
501 if (!std::binary_search(remaining.begin(), remaining.end(), offset)) {
515 if (per_isolate_data_it == per_isolate_data_.end()) return;
560 if (it != debug_side_tables_.end()) return it->second.get();
1152 const v8::debug::Location& end,
1160 (!end.IsEmpty() &&
1161 (end.GetLineNumber() != 0 || end.GetColumnNumber() < 0 ||
1162 end.GetColumnNumber() < start.GetColumnNumber())))
1176 if (end.IsEmpty()) {
1177 // Default: everything till the end of the Script.
1181 // If end is specified: Use it and check for valid input.
1182 end_offset = end.GetColumnNumber();