Searched defs:isDependent (Results 1 - 8 of 8) 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())
545 Dependent = Dependent || Info[i].getArgument().isDependent();
H A DNestedNameSpecifier.cpp49 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent");
164 bool NestedNameSpecifier::isDependent() const { function in class:NestedNameSpecifier
/external/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp82 if (NNS->isDependent()) {
160 return SS.getScopeRep()->isDependent();
170 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed");
317 bool isDependent = false; local
323 isDependent = ObjectType->isDependentType();
328 isDependent = isDependentScopeSpecifier(SS);
344 } else if (isDependent) {
427 bool isDependent = false; local
435 isDependent = ObjectType->isDependentType();
440 isDependent
[all...]
H A DSemaAccess.cpp125 bool isDependent() const { return Dependent; } function in struct:__anon17997::EffectiveContext
407 if (EC.isDependent()) {
468 if (!EC.isDependent())
501 if (EC.isDependent() && MightInstantiateTo(S, *I, Friend))
531 if (EC.isDependent() && MightInstantiateTo(S, FTD, Friend))
752 if (EC.isDependent() && MightInstantiateTo(ECRecord, NamingClass))
1396 assert(EC.isDependent() && "delaying non-dependent access");
H A DSemaExprCXX.cpp111 bool isDependent = false; local
140 isDependent = false;
154 isDependent = isDependentScopeSpecifier(PrefixSS);
157 isDependent = SearchType->isDependentType();
160 isDependent = LookupCtx && LookupCtx->isDependentContext();
171 isDependent = SearchType->isDependentType();
172 assert((isDependent || !SearchType->isIncompleteType()) &&
287 if (isDependent) {
H A DSemaTemplate.cpp254 bool isDependent = false; local
260 isDependent = ObjectType->isDependentType();
261 assert((isDependent || !ObjectType->isIncompleteType() ||
274 isDependent = isDependentScopeSpecifier(SS);
303 } else if (isDependent && (!S || ObjectType.isNull())) {
316 if (Found.empty() && !isDependent) {
353 if (isDependent)
2058 } else if (Name.isDependent() ||
2472 if (!Name.isDependent() &&
5120 assert(Name.isDependent()
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp4243 bool isDependent(const MemAccessInfo &A, unsigned AIdx,
4378 bool MemoryDepChecker::isDependent(const MemAccessInfo &A, unsigned AIdx, function in class:MemoryDepChecker
4527 if (*I1 < *I2 && isDependent(*AI, *I1, *OI, *I2, Strides))
4529 if (*I2 < *I1 && isDependent(*OI, *I2, *AI, *I1, Strides))

Completed in 1455 milliseconds