Searched defs:isDependent (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/AST/
H A DTemplateName.cpp84 bool TemplateName::isDependent() const { function in class:TemplateName
91 // it without the isDependent() checking.
108 return isDependent();
H A DTemplateBase.cpp87 bool TemplateArgument::isDependent() const { function in class:TemplateArgument
96 return getAsTemplate().isDependent();
118 if (P->isDependent())
600 Dependent = Dependent || Info[i].getArgument().isDependent();
H A DNestedNameSpecifier.cpp49 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent");
162 bool NestedNameSpecifier::isDependent() const { function in class:NestedNameSpecifier
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp83 if (NNS->isDependent()) {
163 return NNS->isDependent();
185 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
332 bool isDependent = false; local
338 isDependent = ObjectType->isDependentType();
343 isDependent = isDependentScopeSpecifier(SS);
359 } else if (isDependent) {
419 bool isDependent = false; local
425 isDependent = ObjectType->isDependentType();
430 isDependent
[all...]
H A DSemaAccess.cpp125 bool isDependent() const { return Dependent; } function in struct:__anon3852::EffectiveContext
411 if (EC.isDependent()) {
472 if (!EC.isDependent())
505 if (EC.isDependent() && MightInstantiateTo(S, *I, Friend))
535 if (EC.isDependent() && MightInstantiateTo(S, FTD, Friend))
761 if (EC.isDependent() && MightInstantiateTo(ECRecord, NamingClass))
1406 assert(EC.isDependent() && "delaying non-dependent access");
H A DSemaExprCXX.cpp71 bool isDependent = false; local
107 isDependent = false;
119 isDependent = isDependentScopeSpecifier(PrefixSS);
122 isDependent = SearchType->isDependentType();
125 isDependent = LookupCtx && LookupCtx->isDependentContext();
138 isDependent = SearchType->isDependentType();
139 assert((isDependent || !SearchType->isIncompleteType()) &&
247 if (isDependent) {
H A DSemaTemplate.cpp252 bool isDependent = false; local
258 isDependent = ObjectType->isDependentType();
259 assert((isDependent || !ObjectType->isIncompleteType()) &&
271 isDependent = isDependentScopeSpecifier(SS);
300 } else if (isDependent && (!S || ObjectType.isNull())) {
313 if (Found.empty() && !isDependent) {
353 if (isDependent)
2022 } else if (Name.isDependent() ||
4453 assert(Name.isDependent() && "Non-dependent template isn't a declaration?");
5351 if (!Name.isDependent()
[all...]

Completed in 162 milliseconds