Lines Matching refs:LookupCtx
1978 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, in LookupQualifiedName() argument
1980 assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context"); in LookupQualifiedName()
1986 assert((!isa<TagDecl>(LookupCtx) || in LookupQualifiedName()
1987 LookupCtx->isDependentContext() || in LookupQualifiedName()
1988 cast<TagDecl>(LookupCtx)->isCompleteDefinition() || in LookupQualifiedName()
1989 cast<TagDecl>(LookupCtx)->isBeingDefined()) && in LookupQualifiedName()
2002 } QL(LookupCtx); in LookupQualifiedName()
2004 if (LookupDirect(*this, R, LookupCtx)) { in LookupQualifiedName()
2006 if (isa<CXXRecordDecl>(LookupCtx)) in LookupQualifiedName()
2007 R.setNamingClass(cast<CXXRecordDecl>(LookupCtx)); in LookupQualifiedName()
2024 if (LookupCtx->isFileContext()) in LookupQualifiedName()
2025 return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx); in LookupQualifiedName()
2029 CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx); in LookupQualifiedName()
2195 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, in LookupQualifiedName() argument
2202 return LookupQualifiedName(R, LookupCtx); in LookupQualifiedName()