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 316 DeclContext *LookupCtx = 0;
322 LookupCtx = computeDeclContext(ObjectType);
327 LookupCtx = computeDeclContext(SS, false);
332 if (LookupCtx) {
339 if (!LookupCtx->isDependentContext() &&
340 RequireCompleteDeclContext(SS, LookupCtx))
343 LookupQualifiedName(Found, LookupCtx);
403 DeclContext *LookupCtx = 0;
409 LookupCtx = computeDeclContext(ObjectType);
414 LookupCtx = computeDeclContext(SS, EnteringContext)
    [all...]
SemaExprCXX.cpp 107 DeclContext *LookupCtx = 0;
143 LookupCtx = DC;
155 LookupCtx = computeDeclContext(PrefixSS, EnteringContext);
158 LookupCtx = computeDeclContext(SearchType);
161 LookupCtx = computeDeclContext(SS, EnteringContext);
162 isDependent = LookupCtx && LookupCtx->isDependentContext();
174 LookupCtx = computeDeclContext(SearchType);
192 if (Step == 0 && LookupCtx)
193 LookupQualifiedName(Found, LookupCtx);
    [all...]
SemaTemplate.cpp 253 DeclContext *LookupCtx = 0;
259 LookupCtx = computeDeclContext(ObjectType);
273 LookupCtx = computeDeclContext(SS, EnteringContext);
277 if (LookupCtx && RequireCompleteDeclContext(SS, LookupCtx))
283 if (LookupCtx) {
288 LookupQualifiedName(Found, LookupCtx);
328 FilterCCC, LookupCtx)) {
336 if (LookupCtx) {
340 << Name << LookupCtx << droppedSpecifier << CorrectedQuotedSt
    [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 32 milliseconds