Lines Matching refs:LookupCtx
1597 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, in LookupQualifiedName() argument
1599 assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context"); in LookupQualifiedName()
1605 assert((!isa<TagDecl>(LookupCtx) || in LookupQualifiedName()
1606 LookupCtx->isDependentContext() || in LookupQualifiedName()
1607 cast<TagDecl>(LookupCtx)->isCompleteDefinition() || in LookupQualifiedName()
1608 cast<TagDecl>(LookupCtx)->isBeingDefined()) && in LookupQualifiedName()
1612 if (LookupDirect(*this, R, LookupCtx)) { in LookupQualifiedName()
1614 if (isa<CXXRecordDecl>(LookupCtx)) in LookupQualifiedName()
1615 R.setNamingClass(cast<CXXRecordDecl>(LookupCtx)); in LookupQualifiedName()
1632 if (LookupCtx->isFileContext()) in LookupQualifiedName()
1633 return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx); in LookupQualifiedName()
1637 CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx); in LookupQualifiedName()