Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DType.h3715 bool IsDependent)
3717 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent,
3721 assert((DeducedType.isNull() || !IsDependent) &&
3749 bool IsDecltypeAuto, bool IsDependent) {
3752 ID.AddBoolean(IsDependent);
DASTContext.h1197 bool IsDependent) const;
/external/clang/lib/Parse/
DParseDeclCXX.cpp1685 bool IsDependent = false; in ParseClassSpecifier() local
1699 TParams, Owned, IsDependent, in ParseClassSpecifier()
1707 if (IsDependent) { in ParseClassSpecifier()
DParseDecl.cpp3855 bool IsDependent = false; in ParseEnumSpecifier() local
3861 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier()
3865 if (IsDependent) { in ParseEnumSpecifier()
/external/clang/lib/Serialization/
DASTReader.cpp5473 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; in readTypeRecord() local
5474 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent); in readTypeRecord()
5483 bool IsDependent = Record[Idx++]; in readTypeRecord() local
5487 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
5497 bool IsDependent = Record[Idx++]; in readTypeRecord() local
5500 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
5661 bool IsDependent = Record[Idx++]; in readTypeRecord() local
5673 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent); in readTypeRecord()
/external/clang/lib/Sema/
DSemaCodeComplete.cpp3635 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local
3636 if (!IsDependent) { in CodeCompleteMemberReferenceExpr()
3639 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr()
3644 if (IsDependent) in CodeCompleteMemberReferenceExpr()
DSemaTemplate.cpp7382 bool IsDependent = false; in ActOnExplicitInstantiation() local
7386 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnExplicitInstantiation()
7389 assert(!IsDependent && "explicit instantiation of dependent name not yet handled"); in ActOnExplicitInstantiation()
DSemaDecl.cpp11281 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument
11393 IsDependent = true; in ActOnTag()
11424 IsDependent = true; in ActOnTag()
DSemaDeclCXX.cpp12263 bool IsDependent = false; in ActOnTemplatedFriendTag() local
12267 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
/external/clang/lib/AST/
DASTContext.cpp3827 bool IsDependent) const { in getAutoType()
3828 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent) in getAutoType()
3834 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent); in getAutoType()
3840 IsDependent); in getAutoType()
/external/clang/include/clang/Sema/
DSema.h1733 bool &OwnedDecl, bool &IsDependent,