Home | History | Annotate | Download | only in Sema

Lines Matching refs:LookupCtx

316   DeclContext *LookupCtx = nullptr;
322 LookupCtx = computeDeclContext(ObjectType);
327 LookupCtx = computeDeclContext(SS, false);
332 if (LookupCtx) {
339 if (!LookupCtx->isDependentContext() &&
340 RequireCompleteDeclContext(SS, LookupCtx))
343 LookupQualifiedName(Found, LookupCtx);
426 DeclContext *LookupCtx = nullptr;
434 LookupCtx = computeDeclContext(ObjectType);
439 LookupCtx = computeDeclContext(SS, EnteringContext);
445 if (LookupCtx) {
452 if (!LookupCtx->isDependentContext() &&
453 RequireCompleteDeclContext(SS, LookupCtx))
456 LookupQualifiedName(Found, LookupCtx);
494 !(LookupCtx && LookupCtx->isRecord() &&
495 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
496 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
515 if (LookupCtx)
516 LookupQualifiedName(R, LookupCtx);
548 &SS, Validator, CTK_ErrorRecovery, LookupCtx,
550 if (LookupCtx) {
557 << Name << LookupCtx << DroppedSpecifier
704 DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
722 Diag(IdentifierLoc, diag::err_no_member) << &Identifier << LookupCtx