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 364 DeclContext *LookupCtx = nullptr;
370 LookupCtx = computeDeclContext(ObjectType);
375 LookupCtx = computeDeclContext(SS, false);
380 if (LookupCtx) {
387 if (!LookupCtx->isDependentContext() &&
388 RequireCompleteDeclContext(SS, LookupCtx))
391 LookupQualifiedName(Found, LookupCtx);
471 DeclContext *LookupCtx = nullptr;
479 LookupCtx = computeDeclContext(ObjectType);
484 LookupCtx = computeDeclContext(SS, EnteringContext)
    [all...]
SemaExprCXX.cpp 111 DeclContext *LookupCtx = nullptr;
143 LookupCtx = DC;
157 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
160 LookupCtx = computeDeclContext(SearchType);
163 LookupCtx = computeDeclContext(SS, EnteringContext);
164 isDependent = LookupCtx && LookupCtx->isDependentContext();
174 LookupCtx = computeDeclContext(SearchType);
192 if (Step == 0 && LookupCtx)
193 LookupQualifiedName(Found, LookupCtx);
    [all...]
SemaTemplate.cpp 255 DeclContext *LookupCtx = nullptr;
261 LookupCtx = computeDeclContext(ObjectType);
275 LookupCtx = computeDeclContext(SS, EnteringContext);
279 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
285 if (LookupCtx) {
290 LookupQualifiedName(Found, LookupCtx);
330 std::move(FilterCCC), CTK_ErrorRecovery, LookupCtx)) {
336 if (LookupCtx) {
341 << Name << LookupCtx << DroppedSpecifie
    [all...]
SemaDecl.cpp 249 DeclContext *LookupCtx = nullptr;
253 LookupCtx = computeDeclContext(ObjectType);
255 LookupCtx = computeDeclContext(*SS, false);
257 if (!LookupCtx) {
285 if (!LookupCtx->isDependentContext() &&
286 RequireCompleteDeclContext(*SS, LookupCtx))
295 if (LookupCtx) {
300 LookupQualifiedName(Result, LookupCtx);
    [all...]

Completed in 107 milliseconds