Home | History | Annotate | Download | only in Sema

Lines Matching defs:Ctx

2168       for (DeclContext *Ctx = CurContext; Ctx; Ctx = Ctx->getLookupParent()) {
2170 if (Ctx->isFileContext()) break;
2173 CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx);
5771 DeclContext *Ctx = S->getEntity();
5772 if (Ctx && Ctx->isExternCContext())
5776 while (Ctx && isa<LinkageSpecDecl>(Ctx))
5777 Ctx = Ctx->getParent();
5782 if (Ctx) {
5783 if (Ctx->isFileContext())
5785 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Ctx)) {
8151 DeclContext *Ctx = computeDeclContext(SS);
8152 if (!Ctx) {
8167 if (RequireCompleteDeclContext(SS, Ctx))
8172 LookupQualifiedName(Result, Ctx, SS);
8182 << Ctx << CondRange;
8196 << Name << Ctx << FullRange;
8240 Diag(IILoc, DiagID) << FullRange << Name << Ctx;