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

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h3919 AutoType(QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent) argument
3921 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent,
3925 assert((DeducedType.isNull() || !IsDependent) &&
3957 AutoTypeKeyword Keyword, bool IsDependent) {
3960 ID.AddBoolean(IsDependent);
3956 Profile(llvm::FoldingSetNodeID &ID, QualType Deduced, AutoTypeKeyword Keyword, bool IsDependent) argument
H A DASTContext.h1308 bool IsDependent) const;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp5426 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; local
5427 return Context.getAutoType(Deduced, Keyword, IsDependent);
5436 bool IsDependent = Record[Idx++]; local
5440 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
5450 bool IsDependent = Record[Idx++]; local
5453 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
5619 bool IsDependent = Record[Idx++]; local
5631 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseDeclCXX.cpp1720 bool IsDependent = false; local
1736 TParams, Owned, IsDependent,
1744 if (IsDependent) {
H A DParseDecl.cpp4001 bool IsDependent = false; local
4007 Owned, IsDependent, ScopedEnumKWLoc,
4026 if (IsDependent) {
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCodeComplete.cpp3694 bool IsDependent = BaseType->isDependentType(); local
3695 if (!IsDependent) {
3698 IsDependent = Ctx->isDependentContext();
3703 if (IsDependent)
H A DSemaTemplate.cpp7502 bool IsDependent = false; local
7506 MultiTemplateParamsArg(), Owned, IsDependent,
7509 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
H A DSemaDecl.cpp11856 bool &OwnedDecl, bool &IsDependent,
11973 IsDependent = true;
12004 IsDependent = true;
11850 ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK, SourceLocation KWLoc, CXXScopeSpec &SS, IdentifierInfo *Name, SourceLocation NameLoc, AttributeList *Attr, AccessSpecifier AS, SourceLocation ModulePrivateLoc, MultiTemplateParamsArg TemplateParameterLists, bool &OwnedDecl, bool &IsDependent, SourceLocation ScopedEnumKWLoc, bool ScopedEnumUsesClassTag, TypeResult UnderlyingType, bool IsTypeSpecifier, SkipBodyInfo *SkipBody) argument
H A DSemaDeclCXX.cpp12337 bool IsDependent = false; local
12341 MultiTemplateParamsArg(), Owned, IsDependent,
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp4028 bool IsDependent) const {
4029 if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && !IsDependent)
4035 AutoType::Profile(ID, DeducedType, Keyword, IsDependent);
4041 IsDependent);
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h1898 bool &OwnedDecl, bool &IsDependent,

Completed in 400 milliseconds