Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Core/
DIOHandler.h305 m_end_line((end_line && end_line[0]) ? end_line : "") {} in IOHandlerDelegate()
311 return ConstString(m_end_line + "\n"); in IOHandlerGetControlSequence()
319 if (num_lines > 0 && lines[num_lines - 1] == m_end_line) { in IOHandlerIsInputComplete()
329 const std::string m_end_line;
/external/llvm-project/lldb/source/Symbol/
DSymbolContext.cpp928 m_start_line(0), m_end_line(0), m_function_spec(), m_class_name(), in SymbolContextSpecifier()
945 m_end_line = line_no; in AddLineSpecification()
987 m_end_line = StringConvert::ToSInt32(spec_string, 0, 0, &return_value); in AddSpecification()
1014 m_end_line = 0; in Clear()
1072 if (sc.line_entry.line < m_start_line || sc.line_entry.line > m_end_line) in SymbolContextMatches()
1144 s->Printf("to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1148 s->Printf(" from start to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1157 s->Printf("to line %" PRIu64 "", (uint64_t)m_end_line); in GetDescription()
1162 s->Printf("From start to line %" PRIu64 ".\n", (uint64_t)m_end_line); in GetDescription()
/external/llvm-project/lldb/include/lldb/Symbol/
DSymbolContext.h363 size_t m_end_line; variable
/external/llvm-project/lldb/source/Commands/
DCommandObjectThread.cpp265 if (option_arg.getAsInteger(0, m_end_line)) in SetOptionValue()
308 m_end_line = LLDB_INVALID_LINE_NUMBER; in OptionParsingStarting()
319 uint32_t m_end_line; member in ThreadStepScopeOptionGroup
426 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER && in DoExecute()
457 if (m_options.m_end_line != LLDB_INVALID_LINE_NUMBER) { in DoExecute()
459 if (!sc.GetAddressRangeFromHereToEndLine(m_options.m_end_line, range, in DoExecute()