Home | History | Annotate | Download | only in Sema

Lines Matching defs:LookupCtx

251   DeclContext *LookupCtx = 0;
257 LookupCtx = computeDeclContext(ObjectType);
270 LookupCtx = computeDeclContext(SS, EnteringContext);
274 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
280 if (LookupCtx) {
285 LookupQualifiedName(Found, LookupCtx);
325 FilterCCC, LookupCtx)) {
333 if (LookupCtx)
335 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
2367 DeclContext *LookupCtx = 0;
2369 LookupCtx = computeDeclContext(SS, EnteringContext);
2370 if (!LookupCtx && ObjectType)
2371 LookupCtx = computeDeclContext(ObjectType.get());
2372 if (LookupCtx) {
2393 if (TNK == TNK_Non_template && LookupCtx->isDependentContext() &&
2394 isa<CXXRecordDecl>(LookupCtx) &&
2395 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
2396 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {