Home
last modified time | relevance | path

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

/external/llvm-project/flang/lib/Semantics/
Dtools.cpp192 const Scope *maybeAncestor, const Scope &maybeDescendent) { in DoesScopeContain() argument
193 return maybeAncestor && !maybeDescendent.IsGlobal() && in DoesScopeContain()
195 [&](const Scope &scope) { return &scope == maybeAncestor; }); in DoesScopeContain()
198 bool DoesScopeContain(const Scope *maybeAncestor, const Symbol &symbol) { in DoesScopeContain() argument
199 return DoesScopeContain(maybeAncestor, symbol.owner()); in DoesScopeContain()
/external/llvm-project/flang/include/flang/Semantics/
Dtools.h80 bool DoesScopeContain(const Scope *maybeAncestor, const Scope &maybeDescendent);