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.cpp657 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo() local
658 basename = cpp_method.GetBasename(); in LookupInfo()
675 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo() local
676 if (cpp_method.IsValid()) { in LookupInfo()
677 basename = cpp_method.GetBasename(); in LookupInfo()
679 if (!cpp_method.GetQualifiers().empty()) { in LookupInfo()
708 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo() local
709 basename = cpp_method.GetBasename(); in LookupInfo()
798 CPlusPlusLanguage::MethodName cpp_method(full_name); in Prune() local
799 if (cpp_method.IsValid()) { in Prune()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp184 CPlusPlusLanguage::MethodName cpp_method{ConstString(full_name)}; in PrettyPrintFunctionNameWithArgs() local
186 if (!cpp_method.IsValid()) in PrettyPrintFunctionNameWithArgs()
189 llvm::StringRef return_type = cpp_method.GetReturnType(); in PrettyPrintFunctionNameWithArgs()
195 out_stream.PutCString(cpp_method.GetScopeQualifiedName()); in PrettyPrintFunctionNameWithArgs()
202 llvm::StringRef qualifiers = cpp_method.GetQualifiers(); in PrettyPrintFunctionNameWithArgs()