Searched defs:LookupCtx (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp316 DeclContext *LookupCtx = nullptr; local
322 LookupCtx = computeDeclContext(ObjectType);
327 LookupCtx = computeDeclContext(SS, false);
332 if (LookupCtx) {
339 if (!LookupCtx->isDependentContext() &&
340 RequireCompleteDeclContext(SS, LookupCtx))
343 LookupQualifiedName(Found, LookupCtx);
426 DeclContext *LookupCtx = nullptr; local
434 LookupCtx = computeDeclContext(ObjectType);
439 LookupCtx
[all...]
H A DSemaExprCXX.cpp110 DeclContext *LookupCtx = nullptr; local
139 LookupCtx = DC;
153 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
156 LookupCtx = computeDeclContext(SearchType);
159 LookupCtx = computeDeclContext(SS, EnteringContext);
160 isDependent = LookupCtx && LookupCtx->isDependentContext();
170 LookupCtx = computeDeclContext(SearchType);
188 if (Step == 0 && LookupCtx)
189 LookupQualifiedName(Found, LookupCtx);
[all...]
H A DSemaLookup.cpp764 // Perform direct name lookup into the LookupCtx.
1589 /// \param LookupCtx The context in which qualified name lookup will
1597 bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, argument
1599 assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context");
1605 assert((!isa<TagDecl>(LookupCtx) ||
1606 LookupCtx->isDependentContext() ||
1607 cast<TagDecl>(LookupCtx)->isCompleteDefinition() ||
1608 cast<TagDecl>(LookupCtx)->isBeingDefined()) &&
1611 // Perform qualified name lookup into the LookupCtx.
1612 if (LookupDirect(*this, R, LookupCtx)) {
[all...]
H A DSemaTemplate.cpp253 DeclContext *LookupCtx = nullptr; local
259 LookupCtx = computeDeclContext(ObjectType);
273 LookupCtx = computeDeclContext(SS, EnteringContext);
277 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
283 if (LookupCtx) {
288 LookupQualifiedName(Found, LookupCtx);
329 LookupCtx)) {
335 if (LookupCtx) {
340 << Name << LookupCtx << DroppedSpecifie
2926 DeclContext *LookupCtx = nullptr; local
[all...]
H A DSemaDecl.cpp206 DeclContext *LookupCtx = nullptr; local
210 LookupCtx = computeDeclContext(ObjectType);
212 LookupCtx = computeDeclContext(*SS, false);
214 if (!LookupCtx) {
242 if (!LookupCtx->isDependentContext() &&
243 RequireCompleteDeclContext(*SS, LookupCtx))
252 if (LookupCtx) {
257 LookupQualifiedName(Result, LookupCtx);

Completed in 239 milliseconds