Home
last modified time | relevance | path

Searched refs:cpp_method (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp781 std::unique_ptr<Language::MethodName> cpp_method = in Prune() local
783 if (cpp_method->IsValid()) { in Prune()
784 if (cpp_method->GetContext().empty()) { in Prune()
785 if (cpp_method->GetBasename().compare(m_name) != 0) { in Prune()
792 if (cpp_method->GetContext() == anon_prefix) in Prune()
793 qualified_name = cpp_method->GetBasename().str(); in Prune()
795 qualified_name = cpp_method->GetScopeQualifiedName(); in Prune()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp69 std::unique_ptr<CxxMethodName> cpp_method = in GetMethodName() local
71 cpp_method->IsValid(); in GetMethodName()
72 return cpp_method; in GetMethodName()
213 CPlusPlusLanguage::CxxMethodName cpp_method{ConstString(full_name)}; in PrettyPrintFunctionNameWithArgs() local
215 if (!cpp_method.IsValid()) in PrettyPrintFunctionNameWithArgs()
218 llvm::StringRef return_type = cpp_method.GetReturnType(); in PrettyPrintFunctionNameWithArgs()
224 out_stream.PutCString(cpp_method.GetScopeQualifiedName()); in PrettyPrintFunctionNameWithArgs()
231 llvm::StringRef qualifiers = cpp_method.GetQualifiers(); in PrettyPrintFunctionNameWithArgs()