Home
last modified time | relevance | path

Searched refs:m_end_line (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DIOHandler.h301 m_end_line((end_line && end_line[0]) ? end_line : "") {} in IOHandlerDelegate()
307 return ConstString(m_end_line + "\n"); in IOHandlerGetControlSequence()
315 if (num_lines > 0 && lines[num_lines - 1] == m_end_line) { in IOHandlerIsInputComplete()
325 const std::string m_end_line;
/openbsd/src/gnu/llvm/lldb/source/Symbol/
DSymbolContext.cpp920 m_start_line(0), m_end_line(0), m_function_spec(), m_class_name(), in SymbolContextSpecifier()
937 m_end_line = line_no; in AddLineSpecification()
979 if ((return_value = llvm::to_integer(spec_string, m_end_line))) in AddSpecification()
1005 m_end_line = 0; in Clear()
1063 if (sc.line_entry.line < m_start_line || sc.line_entry.line > m_end_line) in SymbolContextMatches()
1135 s->Printf("to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1139 s->Printf(" from start to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1148 s->Printf("to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1153 s->Printf("From start to line %" PRIu64 ".\n", (uint64_t)m_end_line); in GetDescription()
/openbsd/src/gnu/llvm/lldb/include/lldb/Symbol/
DSymbolContext.h364 size_t m_end_line; variable
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectThread.cpp308 if (option_arg.getAsInteger(0, m_end_line)) in SetOptionValue()
345 m_end_line = LLDB_INVALID_LINE_NUMBER; in OptionParsingStarting()
356 uint32_t m_end_line; member in ThreadStepScopeOptionGroup
458 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER && in DoExecute()
488 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER) { in DoExecute()
490 if (!sc.GetAddressRangeFromHereToEndLine(m_options.m_end_line, range, in DoExecute()