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

References

tools/clang/lib/Sema/SemaLookup.cpp
 2195   assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context");
 2201   assert((!isa<TagDecl>(LookupCtx) ||
 2202           LookupCtx->isDependentContext() ||
 2203           cast<TagDecl>(LookupCtx)->isCompleteDefinition() ||
 2204           cast<TagDecl>(LookupCtx)->isBeingDefined()) &&
 2217   } QL(LookupCtx);
 2219   if (LookupDirect(*this, R, LookupCtx)) {
 2221     if (isa<CXXRecordDecl>(LookupCtx))
 2222       R.setNamingClass(cast<CXXRecordDecl>(LookupCtx));
 2239   if (LookupCtx->isFileContext())
 2240     return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx);
 2244   CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx);