Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp38 bool lldb_private::contextMatches(llvm::ArrayRef<CompilerContext> context_chain, in contextMatches() argument
40 auto ctx = context_chain.begin(); in contextMatches()
41 auto ctx_end = context_chain.end(); in contextMatches()
153 llvm::ArrayRef<CompilerContext> context_chain) const { in ContextMatches()
154 if (GetExactMatch() || context_chain.size() == m_context.size()) in ContextMatches()
155 return ::contextMatches(context_chain, m_context); in ContextMatches()
159 if (context_chain.size() < m_context.size()) in ContextMatches()
162 size_t compare_count = context_chain.size() - m_context.size(); in ContextMatches()
164 llvm::ArrayRef<CompilerContext>(context_chain.data() + compare_count, in ContextMatches()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h66 bool contextMatches(llvm::ArrayRef<CompilerContext> context_chain,