Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp46 bool lldb_private::contextMatches(llvm::ArrayRef<CompilerContext> context_chain, in contextMatches() argument
48 auto ctx = context_chain.begin(); in contextMatches()
49 auto ctx_end = context_chain.end(); in contextMatches()
155 llvm::ArrayRef<CompilerContext> context_chain) const { in ContextMatches()
156 if (GetExactMatch() || context_chain.size() == m_context.size()) in ContextMatches()
157 return ::contextMatches(context_chain, m_context); in ContextMatches()
161 if (context_chain.size() < m_context.size()) in ContextMatches()
164 size_t compare_count = context_chain.size() - m_context.size(); in ContextMatches()
166 llvm::ArrayRef<CompilerContext>(context_chain.data() + compare_count, in ContextMatches()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h70 bool contextMatches(llvm::ArrayRef<CompilerContext> context_chain,