Searched refs:IsDependent (Results 1 – 11 of 11) sorted by relevance
/external/clang/include/clang/AST/ |
D | Type.h | 3715 bool IsDependent) 3717 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent, 3721 assert((DeducedType.isNull() || !IsDependent) && 3749 bool IsDecltypeAuto, bool IsDependent) { 3752 ID.AddBoolean(IsDependent);
|
D | ASTContext.h | 1197 bool IsDependent) const;
|
/external/clang/lib/Parse/ |
D | ParseDeclCXX.cpp | 1685 bool IsDependent = false; in ParseClassSpecifier() local 1699 TParams, Owned, IsDependent, in ParseClassSpecifier() 1707 if (IsDependent) { in ParseClassSpecifier()
|
D | ParseDecl.cpp | 3855 bool IsDependent = false; in ParseEnumSpecifier() local 3861 Owned, IsDependent, ScopedEnumKWLoc, in ParseEnumSpecifier() 3865 if (IsDependent) { in ParseEnumSpecifier()
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 5473 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/ |
D | SemaCodeComplete.cpp | 3635 bool IsDependent = BaseType->isDependentType(); in CodeCompleteMemberReferenceExpr() local 3636 if (!IsDependent) { in CodeCompleteMemberReferenceExpr() 3639 IsDependent = Ctx->isDependentContext(); in CodeCompleteMemberReferenceExpr() 3644 if (IsDependent) in CodeCompleteMemberReferenceExpr()
|
D | SemaTemplate.cpp | 7382 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()
|
D | SemaDecl.cpp | 11281 bool &OwnedDecl, bool &IsDependent, in ActOnTag() argument 11393 IsDependent = true; in ActOnTag() 11424 IsDependent = true; in ActOnTag()
|
D | SemaDeclCXX.cpp | 12263 bool IsDependent = false; in ActOnTemplatedFriendTag() local 12267 MultiTemplateParamsArg(), Owned, IsDependent, in ActOnTemplatedFriendTag()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 3827 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/ |
D | Sema.h | 1733 bool &OwnedDecl, bool &IsDependent,
|