Lines Matching refs:LookupCtx
2418 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, in LookupQualifiedName() argument
2420 assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context"); in LookupQualifiedName()
2426 assert((!isa<TagDecl>(LookupCtx) || in LookupQualifiedName()
2427 LookupCtx->isDependentContext() || in LookupQualifiedName()
2428 cast<TagDecl>(LookupCtx)->isCompleteDefinition() || in LookupQualifiedName()
2429 cast<TagDecl>(LookupCtx)->isBeingDefined()) && in LookupQualifiedName()
2442 } QL(LookupCtx); in LookupQualifiedName()
2444 if (LookupDirect(*this, R, LookupCtx)) { in LookupQualifiedName()
2446 if (isa<CXXRecordDecl>(LookupCtx)) in LookupQualifiedName()
2447 R.setNamingClass(cast<CXXRecordDecl>(LookupCtx)); in LookupQualifiedName()
2464 if (LookupCtx->isFileContext()) in LookupQualifiedName()
2465 return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx); in LookupQualifiedName()
2469 CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx); in LookupQualifiedName()
2686 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, in LookupQualifiedName() argument
2693 return LookupQualifiedName(R, LookupCtx); in LookupQualifiedName()