reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaLookup.cpp
 1925       while (!(S->getFlags() & Scope::DeclScope) ||
 1926              (S->getEntity() && S->getEntity()->isTransparentContext()))
 1926              (S->getEntity() && S->getEntity()->isTransparentContext()))
 1927         S = S->getParent();
 1927         S = S->getParent();
 1946           if (!LeftStartingScope && !S->isDeclScope(*I))
 1967           while (S && !S->isDeclScope(D))
 1967           while (S && !S->isDeclScope(D))
 1968             S = S->getParent();
 1968             S = S->getParent();
 1973           if (S && isNamespaceOrTranslationUnitScope(S))
 1973           if (S && isNamespaceOrTranslationUnitScope(S))
 1974             S = nullptr;
 1978           if (!S)
 1983             if (S) {
 1985               if (!S->isDeclScope(*LastI))
 2007     if (CppLookupName(R, S))
 2021   return (ExternalSource && ExternalSource->LookupUnqualified(R, S));