Home | History | Annotate | Download | only in Sema

Lines Matching refs:LookupCtx

764   // Perform direct name lookup into the LookupCtx.
1589 /// \param LookupCtx The context in which qualified name lookup will
1597 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx,
1599 assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context");
1605 assert((!isa<TagDecl>(LookupCtx) ||
1606 LookupCtx->isDependentContext() ||
1607 cast<TagDecl>(LookupCtx)->isCompleteDefinition() ||
1608 cast<TagDecl>(LookupCtx)->isBeingDefined()) &&
1611 // Perform qualified name lookup into the LookupCtx.
1612 if (LookupDirect(*this, R, LookupCtx)) {
1614 if (isa<CXXRecordDecl>(LookupCtx))
1615 R.setNamingClass(cast<CXXRecordDecl>(LookupCtx));
1632 if (LookupCtx->isFileContext())
1633 return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx);
1637 CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx);