Lines Matching refs:LookupCtx
2407 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, in LookupQualifiedName() argument
2409 assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context"); in LookupQualifiedName()
2415 assert((!isa<TagDecl>(LookupCtx) || in LookupQualifiedName()
2416 LookupCtx->isDependentContext() || in LookupQualifiedName()
2417 cast<TagDecl>(LookupCtx)->isCompleteDefinition() || in LookupQualifiedName()
2418 cast<TagDecl>(LookupCtx)->isBeingDefined()) && in LookupQualifiedName()
2431 } QL(LookupCtx); in LookupQualifiedName()
2433 if (LookupDirect(*this, R, LookupCtx)) { in LookupQualifiedName()
2435 if (isa<CXXRecordDecl>(LookupCtx)) in LookupQualifiedName()
2436 R.setNamingClass(cast<CXXRecordDecl>(LookupCtx)); in LookupQualifiedName()
2453 if (LookupCtx->isFileContext()) in LookupQualifiedName()
2454 return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx); in LookupQualifiedName()
2458 CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx); in LookupQualifiedName()
2675 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, in LookupQualifiedName() argument
2682 return LookupQualifiedName(R, LookupCtx); in LookupQualifiedName()