Home | History | Annotate | Download | only in Sema

Lines Matching defs:LookupCtx

331   DeclContext *LookupCtx = 0;
337 LookupCtx = computeDeclContext(ObjectType);
342 LookupCtx = computeDeclContext(SS, false);
347 if (LookupCtx) {
354 if (!LookupCtx->isDependentContext() &&
355 RequireCompleteDeclContext(SS, LookupCtx))
358 LookupQualifiedName(Found, LookupCtx);
418 DeclContext *LookupCtx = 0;
424 LookupCtx = computeDeclContext(ObjectType);
429 LookupCtx = computeDeclContext(SS, EnteringContext);
436 if (LookupCtx) {
443 if (!LookupCtx->isDependentContext() &&
444 RequireCompleteDeclContext(SS, LookupCtx))
447 LookupQualifiedName(Found, LookupCtx);
485 !(LookupCtx && LookupCtx->isRecord() &&
486 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
487 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
511 LookupCtx, EnteringContext))) {
514 if (LookupCtx)
516 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
667 DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
679 << &Identifier << LookupCtx << SS.getRange();