Home
last modified time | relevance | path

Searched refs:isDependent (Results 1 – 22 of 22) sorted by relevance

/external/clang/lib/Sema/
DSemaCXXScopeSpec.cpp82 if (NNS->isDependent()) { in computeDeclContext()
160 return SS.getScopeRep()->isDependent(); in isDependentScopeSpecifier()
170 assert(NNS->isDependent() && "Only dependent nested-name-specifier allowed"); in getCurrentInstantiationOf()
317 bool isDependent = false; in isNonTypeNestedNameSpecifier() local
323 isDependent = ObjectType->isDependentType(); in isNonTypeNestedNameSpecifier()
328 isDependent = isDependentScopeSpecifier(SS); in isNonTypeNestedNameSpecifier()
344 } else if (isDependent) { in isNonTypeNestedNameSpecifier()
404 bool isDependent = false; in BuildCXXNestedNameSpecifier() local
410 isDependent = ObjectType->isDependentType(); in BuildCXXNestedNameSpecifier()
415 isDependent = isDependentScopeSpecifier(SS); in BuildCXXNestedNameSpecifier()
[all …]
DSemaAccess.cpp125 bool isDependent() const { return Dependent; } in isDependent() function
411 if (EC.isDependent()) { in MatchesFriend()
472 if (!EC.isDependent()) in MatchesFriend()
505 if (EC.isDependent() && MightInstantiateTo(S, *I, Friend)) in MatchesFriend()
535 if (EC.isDependent() && MightInstantiateTo(S, FTD, Friend)) in MatchesFriend()
761 if (EC.isDependent() && MightInstantiateTo(ECRecord, NamingClass)) in HasAccess()
1406 assert(EC.isDependent() && "delaying non-dependent access"); in DelayDependentAccess()
DSemaTemplate.cpp254 bool isDependent = false; in LookupTemplateName() local
260 isDependent = ObjectType->isDependentType(); in LookupTemplateName()
261 assert((isDependent || !ObjectType->isIncompleteType() || in LookupTemplateName()
274 isDependent = isDependentScopeSpecifier(SS); in LookupTemplateName()
303 } else if (isDependent && (!S || ObjectType.isNull())) { in LookupTemplateName()
316 if (Found.empty() && !isDependent) { in LookupTemplateName()
360 if (isDependent) in LookupTemplateName()
2020 } else if (Name.isDependent() || in CheckTemplateIdType()
2377 if (!Name.isDependent() && in ActOnVarTemplateSpecialization()
4910 assert(Name.isDependent() && "Non-dependent template isn't a declaration?"); in CheckTemplateArgument()
[all …]
DSemaExprCXX.cpp108 bool isDependent = false; in getDestructorName() local
144 isDependent = false; in getDestructorName()
156 isDependent = isDependentScopeSpecifier(PrefixSS); in getDestructorName()
159 isDependent = SearchType->isDependentType(); in getDestructorName()
162 isDependent = LookupCtx && LookupCtx->isDependentContext(); in getDestructorName()
175 isDependent = SearchType->isDependentType(); in getDestructorName()
176 assert((isDependent || !SearchType->isIncompleteType()) && in getDestructorName()
284 if (isDependent) { in getDestructorName()
DSemaCodeComplete.cpp4082 if (!Results.empty() && NNS->isDependent()) in CodeCompleteQualifiedId()
DTreeTransform.h874 if (QualifierLoc.getNestedNameSpecifier()->isDependent()) { in RebuildDependentNameType()
DSemaDecl.cpp7047 D.getCXXScopeSpec().getScopeRep()->isDependent() || in ActOnFunctionDeclarator()
DSemaDeclCXX.cpp11351 } else if (!SS.getScopeRep()->isDependent()) { in ActOnFriendFunctionDecl()
/external/clang/lib/AST/
DTemplateName.cpp84 bool TemplateName::isDependent() const { in isDependent() function in TemplateName
108 return isDependent(); in isInstantiationDependent()
DTemplateBase.cpp87 bool TemplateArgument::isDependent() const { in isDependent() function in TemplateArgument
96 return getAsTemplate().isDependent(); in isDependent()
118 if (P->isDependent()) in isDependent()
539 Dependent = Dependent || Info[i].getArgument().isDependent(); in initializeFrom()
DNestedNameSpecifier.cpp49 assert((!Prefix || Prefix->isDependent()) && "Prefix must be dependent"); in Create()
162 bool NestedNameSpecifier::isDependent() const { in isDependent() function in NestedNameSpecifier
DType.cpp1444 assert((!NNS || NNS->isDependent()) && in DependentTemplateSpecializationType()
1934 if (Args[i].getArgument().isDependent()) { in anyDependentTemplateArguments()
1950 if (Args[i].isDependent()) { in anyDependentTemplateArguments()
1968 Canon.isNull()? T.isDependent() : Canon->isDependentType(), in TemplateSpecializationType()
1969 Canon.isNull()? T.isDependent() in TemplateSpecializationType()
1983 T.isDependent() || in TemplateSpecializationType()
1999 if (Canon.isNull() && Args[Arg].isDependent()) in TemplateSpecializationType()
DASTContext.cpp3285 assert(NNS->isDependent() && "nested-name-specifier must be dependent"); in getDependentNameType()
3334 assert((!NNS || NNS->isDependent()) && in getDependentTemplateSpecializationType()
6220 assert((!NNS || NNS->isDependent()) && in getDependentTemplateName()
6256 assert((!NNS || NNS->isDependent()) && in getDependentTemplateName()
DItaniumMangle.cpp3273 if (!A.isInstantiationDependent() || A.isDependent()) in mangleTemplateArg()
DExpr.cpp1315 if (QualifierLoc && QualifierLoc.getNestedNameSpecifier()->isDependent()) { in Create()
/external/clang/include/clang/AST/
DNestedNameSpecifier.h185 bool isDependent() const;
DTemplateName.h291 bool isDependent() const;
DTemplateBase.h212 bool isDependent() const;
DType.h4035 assert(NNS->isDependent() &&
/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp631 if (TemplateType->getTemplateName().isDependent()) in getAsCXXRecordDecl()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp3221 bool isDependent(const MemAccessInfo &A, unsigned AIdx,
3354 bool MemoryDepChecker::isDependent(const MemAccessInfo &A, unsigned AIdx, in isDependent() function in MemoryDepChecker
3501 if (*I1 < *I2 && isDependent(*AI, *I1, *OI, *I2)) in areDepsSafe()
3503 if (*I2 < *I1 && isDependent(*OI, *I2, *AI, *I1)) in areDepsSafe()
/external/clang/lib/Parse/
DParseTentative.cpp1163 if (SS.getScopeRep() && SS.getScopeRep()->isDependent()) { in isCXXDeclarationSpecifier()