Searched refs:m_line (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Declaration.cpp | 21 if (m_line > 0) in Dump() 22 s->Printf(":%u", m_line); in Dump() 26 if (m_line > 0) { in Dump() 27 s->Printf(", line = %u", m_line); in Dump() 42 if (m_line > 0) in DumpStopContext() 43 s->Printf(":%u", m_line); in DumpStopContext() 47 } else if (m_line > 0) { in DumpStopContext() 48 s->Printf(" line %u", m_line); in DumpStopContext() 62 if (a.m_line < b.m_line) in Compare() 64 else if (a.m_line > b.m_line) in Compare() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Declaration.h | 44 : m_file(file_spec), m_line(line), m_column(column) {} in m_file() 48 : m_line(0), m_column(LLDB_INVALID_COLUMN_NUMBER) { in Declaration() 59 m_line = 0; in Clear() 120 uint32_t GetLine() const { return m_line; } in GetLine() 146 return m_file && m_line != 0 && m_line != LLDB_INVALID_LINE_NUMBER; in IsValid() 168 void SetLine(uint32_t line) { m_line = line; } in SetLine() 183 uint32_t m_line = 0; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | DebugMacros.h | 42 DebugMacroEntry() : m_type(INVALID), m_line(0), m_debug_line_file_idx(0) {} in DebugMacroEntry() 48 uint64_t GetLineNumber() const { return m_line; } in GetLineNumber() 65 uint32_t m_line : 29; variable
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | DebugMacros.cpp | 17 : m_type(type), m_line(line), m_debug_line_file_idx(debug_line_file_idx), in DebugMacroEntry() 22 : m_type(type), m_line(0), m_debug_line_file_idx(0), in DebugMacroEntry()
|