Home
last modified time | relevance | path

Searched refs:IsDependent (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/Parse/
DParseDeclCXX.cpp1405 bool IsDependent = false; in ParseClassSpecifier() local
1419 TParams, Owned, IsDependent, in ParseClassSpecifier()
1425 if (IsDependent) { in ParseClassSpecifier()
DParseDecl.cpp3312 bool IsDependent = false; in ParseEnumSpecifier() local
3318 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
3321 if (IsDependent) { in ParseEnumSpecifier()
/external/clang/lib/Serialization/
DASTReader.cpp3967 bool IsDependent = Record[Idx++]; in readTypeRecord() local
3971 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
3981 bool IsDependent = Record[Idx++]; in readTypeRecord() local
3984 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
4134 bool IsDependent = Record[Idx++]; in readTypeRecord() local
4146 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
/external/clang/lib/Sema/
DSemaCodeComplete.cpp3525 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local
3526 if (!IsDependent) { in CodeCompleteMemberReferenceExpr()
3529 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr()
3534 if (IsDependent) in CodeCompleteMemberReferenceExpr()
DSemaTemplate.cpp6506 bool IsDependent = false; in ActOnExplicitInstantiation() local
6510 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnExplicitInstantiation()
6512 assert(!IsDependent && "explicit instantiation of dependent name not yet handled"); in ActOnExplicitInstantiation()
DSemaDecl.cpp8345 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument
8453 IsDependent = true; in ActOnTag()
8484 IsDependent = true; in ActOnTag()
DSemaDeclCXX.cpp9961 bool IsDependent = false; in ActOnTemplatedFriendTag() local
9965 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/external/clang/include/clang/Sema/
DSema.h1414 bool &OwnedDecl, bool &IsDependent,