HomeSort by relevance Sort by last modified time
    Searched defs:LookupCtx (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 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)
    [all...]
SemaExprCXX.cpp 70 DeclContext *LookupCtx = 0;
106 LookupCtx = DC;
118 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
121 LookupCtx = computeDeclContext(SearchType);
124 LookupCtx = computeDeclContext(SS, EnteringContext);
125 isDependent = LookupCtx && LookupCtx->isDependentContext();
137 LookupCtx = computeDeclContext(SearchType);
155 if (Step == 0 && LookupCtx)
156 LookupQualifiedName(Found, LookupCtx);
    [all...]
SemaTemplate.cpp 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(
    [all...]
SemaDecl.cpp 140 DeclContext *LookupCtx = 0;
144 LookupCtx = computeDeclContext(ObjectType);
146 LookupCtx = computeDeclContext(*SS, false);
148 if (!LookupCtx) {
178 if (!LookupCtx->isDependentContext() &&
179 RequireCompleteDeclContext(*SS, LookupCtx))
188 if (LookupCtx) {
193 LookupQualifiedName(Result, LookupCtx);
    [all...]

Completed in 28 milliseconds