Searched refs:m_full (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | CPlusPlusLanguage.h | 31 : m_full(), m_basename(), m_context(), m_arguments(), m_qualifiers() {} in MethodName() 34 : m_full(s), m_basename(), m_context(), m_arguments(), m_qualifiers(), in MethodName() 44 return (bool)m_full; in IsValid() 47 ConstString GetFullName() const { return m_full; } in GetFullName() 86 ConstString m_full; // Full name: variable
|
H A D | CPlusPlusLanguage.cpp | 110 m_full.Clear(); in Clear() 217 llvm::StringRef full(m_full.GetCString()); in TrySimplifiedParse() 255 if (!m_parsed && m_full) { in Parse() 259 CPlusPlusNameParser parser(m_full.GetStringRef()); in Parse() 335 return m_full.GetStringRef().contains(path); in ContainsPath() 343 return m_full.GetStringRef().contains(path); in ContainsPath()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | ObjCLanguage.h | 60 const std::string &GetFullName() const { return m_full; } in GetFullName() 116 : m_full(name.str()), m_type(type) {} in MethodName() 118 const std::string m_full; variable
|
H A D | ObjCLanguage.cpp | 104 llvm::StringRef full = m_full; in GetClassName() 117 llvm::StringRef full = m_full; in GetClassNameWithCategory() 124 llvm::StringRef full = m_full; in GetSelector() 133 llvm::StringRef full = m_full; in GetCategory() 146 llvm::StringRef full = m_full; in GetFullNameWithoutCategory()
|