Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDIOHandler.h297 m_end_line((end_line && end_line[0]) ? end_line : "") {} in IOHandlerDelegate()
303 return ConstString(m_end_line + "\n"); in IOHandlerGetControlSequence()
311 if (num_lines > 0 && lines[num_lines - 1] == m_end_line) { in IOHandlerIsInputComplete()
321 const std::string m_end_line;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
HDSymbolContext.cpp923 m_start_line(0), m_end_line(0), m_function_spec(), m_class_name(), in SymbolContextSpecifier()
940 m_end_line = line_no; in AddLineSpecification()
982 m_end_line = StringConvert::ToSInt32(spec_string, 0, 0, &return_value); in AddSpecification()
1009 m_end_line = 0; in Clear()
1063 if (sc.line_entry.line < m_start_line || sc.line_entry.line > m_end_line) in SymbolContextMatches()
1137 s->Printf("to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1141 s->Printf(" from start to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1150 s->Printf("to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1155 s->Printf("From start to line %" PRIu64 ".\n", (uint64_t)m_end_line); in GetDescription()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectThread.cpp460 if (option_arg.getAsInteger(0, m_end_line)) in SetOptionValue()
495 m_end_line = LLDB_INVALID_LINE_NUMBER; in OptionParsingStarting()
506 uint32_t m_end_line; member in ThreadStepScopeOptionGroup
602 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER && in DoExecute()
634 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER) { in DoExecute()
636 if (!sc.GetAddressRangeFromHereToEndLine(m_options.m_end_line, range, in DoExecute()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDSymbolContext.h355 size_t m_end_line; variable