Searched refs:line_index (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/libreadline/
H A Dhistsearch.c69 register int line_index; local
99 line_index = strlen (line);
102 if (string_len > line_index)
124 line_index -= string_len;
126 while (line_index >= 0)
128 if (STREQN (string, line + line_index, string_len))
131 return (line_index);
133 line_index--;
140 limit = line_index - string_len + 1;
141 line_index
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h223 std::string PromptForIndex(int line_index);
228 void SetCurrentLine(int line_index);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolContext.cpp711 uint32_t line_index = 0; local
715 line_index = comp_unit->FindLineEntry(line_index, line_entry.line, nullptr,
717 if (line_index == UINT32_MAX)
735 line_index = comp_unit->FindLineEntry(line_index, end_line, nullptr, false,
737 if (line_index == UINT32_MAX) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp306 std::string Editline::PromptForIndex(int line_index) { argument
328 "%*d%s", m_line_number_digits, m_base_line_number + line_index,
329 (line_index == 0) ? prompt.c_str() : continuation_prompt.c_str());
332 return (line_index == 0) ? prompt : continuation_prompt;
335 void Editline::SetCurrentLine(int line_index) { argument
336 m_current_line_index = line_index;
337 m_current_prompt = PromptForIndex(line_index);

Completed in 158 milliseconds