Searched refs:line_index (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | SymbolContext.cpp | 725 uint32_t line_index = 0; in GetAddressRangeFromHereToEndLine() local 729 line_index = comp_unit->FindLineEntry(line_index, line_entry.line, nullptr, in GetAddressRangeFromHereToEndLine() 731 if (line_index == UINT32_MAX) in GetAddressRangeFromHereToEndLine() 749 line_index = comp_unit->FindLineEntry(line_index, end_line, nullptr, false, in GetAddressRangeFromHereToEndLine() 751 if (line_index == UINT32_MAX) { in GetAddressRangeFromHereToEndLine()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | Editline.h | 252 std::string PromptForIndex(int line_index); 256 void SetCurrentLine(int line_index);
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | Editline.cpp | 310 std::string Editline::PromptForIndex(int line_index) { in PromptForIndex() argument 333 "%*d%s", m_line_number_digits, m_base_line_number + line_index, in PromptForIndex() 334 (line_index == 0) ? prompt.c_str() : continuation_prompt.c_str()); in PromptForIndex() 337 return (line_index == 0) ? prompt : continuation_prompt; in PromptForIndex() 340 void Editline::SetCurrentLine(int line_index) { in SetCurrentLine() argument 341 m_current_line_index = line_index; in SetCurrentLine() 342 m_current_prompt = PromptForIndex(line_index); in SetCurrentLine()
|