HomeSort by: relevance | last modified time | path
    Searched defs:LookupCtx (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCXXScopeSpec.cpp 390 DeclContext *LookupCtx = nullptr;
396 LookupCtx = computeDeclContext(ObjectType);
401 LookupCtx = computeDeclContext(SS, false);
406 if (LookupCtx) {
413 if (!LookupCtx->isDependentContext() &&
414 RequireCompleteDeclContext(SS, LookupCtx))
417 LookupQualifiedName(Found, LookupCtx);
497 DeclContext *LookupCtx = nullptr;
505 LookupCtx = computeDeclContext(ObjectType);
510 LookupCtx = computeDeclContext(SS, EnteringContext)
    [all...]
SemaTemplate.cpp 388 DeclContext *LookupCtx = nullptr;
394 LookupCtx = computeDeclContext(ObjectType);
395 IsDependent = !LookupCtx && ObjectType->isDependentType();
422 LookupCtx = computeDeclContext(SS, EnteringContext);
423 IsDependent = !LookupCtx && isDependentScopeSpecifier(SS);
426 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
432 if (LookupCtx) {
437 LookupQualifiedName(Found, LookupCtx);
517 &SS, FilterCCC, CTK_ErrorRecovery, LookupCtx)) {
    [all...]
SemaDecl.cpp 298 DeclContext *LookupCtx = nullptr;
302 LookupCtx = computeDeclContext(ObjectType);
304 LookupCtx = computeDeclContext(*SS, false);
306 if (!LookupCtx) {
334 if (!LookupCtx->isDependentContext() &&
335 RequireCompleteDeclContext(*SS, LookupCtx))
344 if (LookupCtx) {
349 LookupQualifiedName(Result, LookupCtx);
473 auto *LookupRD = dyn_cast_or_null<CXXRecordDecl>(LookupCtx);

Completed in 63 milliseconds