Home
last modified time | relevance | path

Searched refs:name_ref (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DABI.cpp307 llvm::StringRef name_ref = name; in MapRegisterName() local
308 if (!name_ref.consume_front(from_prefix)) in MapRegisterName()
311 if (name_ref.empty() || to_integer(name_ref, _, 10)) in MapRegisterName()
312 name = (to_prefix + name_ref).str(); in MapRegisterName()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectSyntheticFilter.cpp332 size_t ValueObjectSynthetic::GetIndexOfChildWithName(llvm::StringRef name_ref) { in GetIndexOfChildWithName() argument
335 ConstString name(name_ref); in GetIndexOfChildWithName()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp1779 llvm::StringRef name_ref(name); in FindGlobalFunctions() local
1789 target_sp->GetImages().FindFunctions(RegularExpression(name_ref), in FindGlobalFunctions()
1794 RegularExpression(name_ref, llvm::Regex::RegexFlags::IgnoreCase), in FindGlobalFunctions()
1931 llvm::StringRef name_ref(name); in FindGlobalVariables() local
1941 target_sp->GetImages().FindGlobalVariables(RegularExpression(name_ref), in FindGlobalVariables()
1946 RegularExpression(name_ref, llvm::Regex::IgnoreCase), max_matches, in FindGlobalVariables()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp2609 const llvm::StringRef name_ref = name.GetStringRef(); in FindFunctions() local
2610 auto it = name_ref.find('<'); in FindFunctions()
2612 const llvm::StringRef name_no_template_params = name_ref.slice(0, it); in FindFunctions()