Lines Matching +defs:match +defs:line
182 uint32_t line = UINT32_MAX;
185 : line(l), column(c ? *c : LLDB_INVALID_COLUMN_NUMBER) {}
187 : line(sc.line_entry.line),
193 if (lhs.line < rhs.line)
195 if (lhs.line > rhs.line)
205 llvm::StringRef log_ident, uint32_t line, std::optional<uint16_t> column) {
221 auto &match = all_scs[0];
224 if (sc.line_entry.GetFile() == match.line_entry.GetFile() ||
226 *match.line_entry.original_file_sp,
228 // When a match is found, keep track of the smallest line number.
229 closest_line = std::min(closest_line, sc.line_entry.line);
239 // If a column was requested, do a more precise match and only
242 SourceLoc requested(line, *column);
247 // Sort the remaining entries by (line, column).
253 // Filter out all locations with a source location after the closest match.
260 // Remove all entries with a larger line number.
262 // the line number you pass in. So the smaller line number is
266 return closest_line != sc.line_entry.line;
277 // Go through and see if there are line table entries that are
291 // Make breakpoints out of the closest line number match.
321 // If the line number is before the prologue end, move it there...