Lines Matching defs:src_location_spec
250 const SourceLocationSpec &src_location_spec,
253 const FileSpec file_spec = src_location_spec.GetFileSpec();
255 src_location_spec.GetLine().value_or(LLDB_INVALID_LINE_NUMBER);
257 src_location_spec.GetColumn().value_or(LLDB_INVALID_COLUMN_NUMBER);
258 const bool check_inlines = src_location_spec.GetCheckInlines();
309 0, file_indexes.front(), src_location_spec, &line_entry);
315 0, file_indexes, src_location_spec, &line_entry);
349 [&sought_decl, &sc_list, &src_location_spec, resolve_scope,
383 if (src_location_spec.GetExactMatch()) {
385 if ((src_location_spec.GetFileSpec() ==
387 (src_location_spec.GetLine() &&
388 *src_location_spec.GetLine() == call_site_line.line) &&
389 (src_location_spec.GetColumn() &&
390 *src_location_spec.GetColumn() == call_site_line.column))
434 src_location_spec.GetColumn() ? std::optional<uint16_t>(line_entry.column)