Searched refs:m_column (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Declaration.cpp | 23 if (m_column != LLDB_INVALID_COLUMN_NUMBER) in Dump() 24 s->Printf(":%u", m_column); in Dump() 28 if (m_column != LLDB_INVALID_COLUMN_NUMBER) in Dump() 29 s->Printf(":%u", m_column); in Dump() 30 } else if (m_column != LLDB_INVALID_COLUMN_NUMBER) in Dump() 31 s->Printf(", column = %u", m_column); in Dump() 44 if (m_column != LLDB_INVALID_COLUMN_NUMBER) in DumpStopContext() 45 s->Printf(":%u", m_column); in DumpStopContext() 49 if (m_column != LLDB_INVALID_COLUMN_NUMBER) in DumpStopContext() 50 s->Printf(":%u", m_column); in DumpStopContext() [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() 60 m_column = 0; in Clear() 127 uint16_t GetColumn() const { return m_column; } in GetColumn() 175 void SetColumn(uint16_t column) { m_column = column; } in SetColumn() 186 uint16_t m_column = LLDB_INVALID_COLUMN_NUMBER; variable
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectBreakpoint.cpp | 288 if (option_arg.getAsInteger(0, m_column)) in SetOptionValue() 473 m_column = value.GetColumnNumber(); in SetOptionValue() 487 m_column = 0; in OptionParsingStarting() 518 uint32_t m_column = 0; member in CommandObjectBreakpointSet::CommandOptions 604 m_options.m_column, m_options.m_offset_addr, check_inlines, in DoExecute()
|
/freebsd/contrib/bsnmp/tests/ |
H A D | catch.hpp | 8417 Column const& m_column; member in Catch::clara::TextFlow::Column::iterator 8426 : m_column(column), in iterator() 8429 auto line() const -> std::string const& { return m_column.m_strings[m_stringIndex]; } in line() 8442 assert(m_stringIndex < m_column.m_strings.size()); in calcLength() 8445 auto width = m_column.m_width - indent(); in calcLength() 8472 auto initial = m_pos == 0 && m_stringIndex == 0 ? m_column.m_initialIndent : std::string::npos; in indent() 8473 return initial == std::string::npos ? m_column.m_indent : initial; in indent() 8487 explicit iterator(Column const& column) : m_column(column) { in iterator() 8488 assert(m_column.m_width > m_column.m_indent); in iterator() 8489 …assert(m_column.m_initialIndent == std::string::npos || m_column.m_width > m_column.m_initialInden… in iterator() [all …]
|