Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDebugNamesDWARFIndex.cpp433 llvm::ArrayRef<CompilerContext> query_contexts, in WithinParentChain() argument
435 if (query_contexts.size() == parent_chain.size()) in WithinParentChain()
436 return SameParentChain(query_contexts, parent_chain); in WithinParentChain()
440 while (!query_contexts.empty() && in WithinParentChain()
441 query_contexts.size() <= parent_chain.size()) { in WithinParentChain()
442 if (SameAsEntryContext(query_contexts.front(), parent_chain.front())) { in WithinParentChain()
443 query_contexts = query_contexts.drop_front(); in WithinParentChain()
453 return query_contexts.empty(); in WithinParentChain()