Home | History | Annotate | Download | only in Sema

Lines Matching refs: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()
2325 DeclContext *LookupCtx = 0;
2327 LookupCtx = computeDeclContext(SS, EnteringContext);
2328 if (!LookupCtx && ObjectType)
2329 LookupCtx = computeDeclContext(ObjectType.get());
2330 if (LookupCtx) {
2351 if (TNK == TNK_Non_template && LookupCtx
2352 isa<CXXRecordDecl>(LookupCtx) &&
2353 (!cast<CXXRecordDecl>(LookupCtx)->hasDefinition() ||
2354 cast<CXXRecordDecl>(LookupCtx)->hasAnyDependentBases())) {