Searched refs:SearchSpec (Results 1 – 2 of 2) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Expression/ |
| HD | IRExecutionUnit.h | 217 struct SearchSpec; 219 void CollectCandidateCNames(std::vector<SearchSpec> &C_specs, 222 void CollectCandidateCPlusPlusNames(std::vector<SearchSpec> &CPP_specs, 223 const std::vector<SearchSpec> &C_specs, 226 void CollectFallbackNames(std::vector<SearchSpec> &fallback_specs, 227 const std::vector<SearchSpec> &C_specs); 229 lldb::addr_t FindInSymbols(const std::vector<SearchSpec> &specs, 233 lldb::addr_t FindInRuntimes(const std::vector<SearchSpec> &specs, 236 lldb::addr_t FindInUserDefinedSymbols(const std::vector<SearchSpec> &specs,
|
| /freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/ |
| HD | IRExecutionUnit.cpp | 696 struct IRExecutionUnit::SearchSpec { struct in IRExecutionUnit 700 SearchSpec(ConstString n, in SearchSpec() function 706 std::vector<IRExecutionUnit::SearchSpec> &C_specs, in CollectCandidateCNames() argument 710 C_specs.push_back(SearchSpec(name)); in CollectCandidateCNames() 714 std::vector<IRExecutionUnit::SearchSpec> &CPP_specs, in CollectCandidateCPlusPlusNames() 715 const std::vector<SearchSpec> &C_specs, const SymbolContext &sc) { in CollectCandidateCPlusPlusNames() 716 for (const SearchSpec &C_spec : C_specs) { in CollectCandidateCPlusPlusNames() 741 std::vector<SearchSpec> &fallback_specs, in CollectFallbackNames() 742 const std::vector<SearchSpec> &C_specs) { in CollectFallbackNames() 746 for (const SearchSpec &C_spec : C_specs) { in CollectFallbackNames() [all …]
|