Home | History | Annotate | Download | only in Sema

Lines Matching refs:LookupCtx

253   DeclContext *LookupCtx = nullptr;
259 LookupCtx = computeDeclContext(ObjectType);
273 LookupCtx = computeDeclContext(SS, EnteringContext);
277 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
283 if (LookupCtx) {
288 LookupQualifiedName(Found, LookupCtx);
329 LookupCtx)) {
335 if (LookupCtx) {
340 << Name << LookupCtx << DroppedSpecifier
2926 DeclContext *LookupCtx = nullptr;
2928 LookupCtx = computeDeclContext(SS, EnteringContext);
2929 if (!LookupCtx && ObjectType)
2930 LookupCtx = computeDeclContext(ObjectType.get());
2931 if (LookupCtx) {
2952 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
2953 isa<CXXRecordDecl>(LookupCtx) &&
2954 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
2955 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {