Home
last modified time | relevance | path

Searched refs:m_text (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/atf/atf-c++/detail/
Dapplication.cpp68 std::vsnprintf(m_text, sizeof(m_text), fmt, ap); in usage_error()
81 return m_text; in what()
Dapplication.hpp42 char m_text[4096]; member in atf::application::usage_error
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
DCPlusPlusNameParser.cpp646 return m_text.take_front(end_pos).drop_front(start_pos); in GetTextForRange()
674 if (m_text.empty()) in ExtractTokens()
676 clang::Lexer lexer(clang::SourceLocation(), GetLangOptions(), m_text.data(), in ExtractTokens()
677 m_text.data(), m_text.data() + m_text.size()); in ExtractTokens()
DCPlusPlusNameParser.h25 CPlusPlusNameParser(llvm::StringRef text) : m_text(text) { ExtractTokens(); } in CPlusPlusNameParser()
61 llvm::StringRef m_text;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp333 size_t GetNumLines() const { return m_text.GetSize(); } in GetNumLines()
335 size_t GetMaxLineLength() const { return m_text.GetMaxStringLength(); } in GetMaxLineLength()
338 StringList m_text; member in curses::HelpDialogDelegate
4725 : m_text(), m_first_visible_line(0) { in HelpDialogDelegate()
4727 m_text.SplitIntoLines(text); in HelpDialogDelegate()
4728 m_text.AppendString(""); in HelpDialogDelegate()
4735 m_text.AppendString(key_description.GetString()); in HelpDialogDelegate()
4750 const size_t num_lines = m_text.GetSize(); in WindowDelegateDraw()
4760 1, m_text.GetStringAtIndex(m_first_visible_line + y - min_y)); in WindowDelegateDraw()
4769 const size_t num_lines = m_text.GetSize(); in WindowDelegateHandleChar()