Home | History | Annotate | Download | only in Sema

Lines Matching refs:LookupCtx

338   DeclContext *LookupCtx = 0;
344 LookupCtx = computeDeclContext(ObjectType);
349 LookupCtx = computeDeclContext(SS, false);
354 if (LookupCtx) {
361 if (!LookupCtx->isDependentContext() &&
362 RequireCompleteDeclContext(SS, LookupCtx))
365 LookupQualifiedName(Found, LookupCtx);
425 DeclContext *LookupCtx = 0;
431 LookupCtx = computeDeclContext(ObjectType);
436 LookupCtx = computeDeclContext(SS, EnteringContext);
443 if (LookupCtx) {
450 if (!LookupCtx->isDependentContext() &&
451 RequireCompleteDeclContext(SS, LookupCtx))
454 LookupQualifiedName(Found, LookupCtx);
492 !(LookupCtx && LookupCtx->isRecord() &&
493 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
494 !cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases()))) {
518 LookupCtx, EnteringContext))) {
521 if (LookupCtx)
523 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
670 DeclContext *DC = LookupCtx ? LookupCtx : CurContext;
682 << &Identifier << LookupCtx << SS.getRange();