Home
last modified time | relevance | path

Searched refs:NameMatches (Results 1 – 22 of 22) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadSpec.cpp91 bool ThreadSpec::NameMatches(Thread &thread) const { in NameMatches() function in ThreadSpec
96 return NameMatches(name); in NameMatches()
117 if (!NameMatches(thread)) in ThreadPassesBasicTests()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DVariableList.cpp77 if ((*pos)->NameMatches(name)) { in FindVariable()
93 if ((*pos)->NameMatches(name) && (*pos)->GetScope() == value_type) { in FindVariable()
117 if ((*pos)->NameMatches(regex)) { in AppendVariablesIfUnique()
H A DVariable.cpp82 bool Variable::NameMatches(ConstString name) const { in NameMatches() function in Variable
88 return m_mangled.NameMatches(name); in NameMatches()
90 bool Variable::NameMatches(const RegularExpression &regex) const { in NameMatches() function in Variable
94 return m_mangled.NameMatches(regex); in NameMatches()
H A DSymbolContext.cpp1073 if (!name.NameMatches(func_name)) in SymbolContextMatches()
1080 if (!sc.function->GetMangled().NameMatches(func_name)) in SymbolContextMatches()
1083 if (!sc.symbol->GetMangled().NameMatches(func_name)) in SymbolContextMatches()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadSpec.h81 bool NameMatches(const char *name) const { in NameMatches() function
90 bool NameMatches(Thread &thread) const;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DMangled.h178 bool NameMatches(ConstString name) const { in NameMatches() function
183 bool NameMatches(const RegularExpression &regex) const;
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariable.h58 bool NameMatches(ConstString name) const;
60 bool NameMatches(const RegularExpression &regex) const;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp259 bool ProcessInstanceInfoMatch::NameMatches(const char *process_name) const { in NameMatches() function in ProcessInstanceInfoMatch
266 return lldb_private::NameMatches(process_name, m_name_match_type, match_name); in NameMatches()
304 NameMatches(proc_info.GetName()); in Matches()
H A DNameMatches.cpp1 //===-- NameMatches.cpp ---------------------------------------------------===//
8 #include "lldb/Utility/NameMatches.h"
15 bool lldb_private::NameMatches(llvm::StringRef name, NameMatch match_type, in NameMatches() function in lldb_private
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DNameMatches.h24 bool NameMatches(llvm::StringRef name, NameMatch match_type,
H A DProcessInfo.h332 bool NameMatches(const char *process_name) const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.cpp84 if (!pos->NameMatches(*rhs_pos)) in operator ==()
H A DDWARFDeclContext.h34 bool NameMatches(const Entry &rhs) const { in NameMatches() function
H A DAppleDWARFIndex.cpp154 name && Mangled(*name).NameMatches(regex)) in GetGlobalVariables()
H A DDebugNamesDWARFIndex.cpp199 if (!mangled_name.NameMatches(regex)) in GetGlobalVariables()
/freebsd/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp60 NameMatches( in GetOpenBSDProcessArgs()
/freebsd/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp77 NameMatches(process_info.GetExecutableFile().GetFilename().GetCString(), in GetFreeBSDProcessArgs()
/freebsd/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostNetBSD.cpp72 NameMatches(process_info.GetExecutableFile().GetFilename().GetCString(), in GetNetBSDProcessArgs()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DMangled.cpp362 bool Mangled::NameMatches(const RegularExpression &regex) const { in NameMatches() function in Mangled
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILEval.cpp36 if (var_sp->NameMatches(name)) in DILFindVariable()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp487 if (!var->NameMatches(regex) || !ScopeRequested(var->GetScope())) in findUniqueRegexMatches()
/freebsd/lib/clang/liblldb/
H A DMakefile742 SRCS+= Utility/NameMatches.cpp