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

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h3634 bool IsDependent)
3636 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent,
3640 assert((DeducedType.isNull() || !IsDependent) &&
3668 bool IsDecltypeAuto, bool IsDependent) {
3671 ID.AddBoolean(IsDependent);
3633 AutoType(QualType DeducedType, bool IsDecltypeAuto, bool IsDependent) argument
3667 Profile(llvm::FoldingSetNodeID &ID, QualType Deduced, bool IsDecltypeAuto, bool IsDependent) argument
H A DASTContext.h1146 bool IsDependent) const;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp4740 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; local
4741 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent);
4750 bool IsDependent = Record[Idx++]; local
4754 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
4764 bool IsDependent = Record[Idx++]; local
4767 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
4917 bool IsDependent = Record[Idx++]; local
4929 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseDeclCXX.cpp1578 bool IsDependent = false; local
1592 TParams, Owned, IsDependent,
1598 if (IsDependent) {
H A DParseDecl.cpp3755 bool IsDependent = false; local
3761 Owned, IsDependent, ScopedEnumKWLoc,
3764 if (IsDependent) {
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCodeComplete.cpp3613 bool IsDependent = BaseType->isDependentType(); local
3614 if (!IsDependent) {
3617 IsDependent = Ctx->isDependentContext();
3622 if (IsDependent)
H A DSemaTemplate.cpp7100 bool IsDependent = false; local
7104 MultiTemplateParamsArg(), Owned, IsDependent,
7106 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
H A DSemaDecl.cpp10334 bool &OwnedDecl, bool &IsDependent,
10444 IsDependent = true;
10475 IsDependent = true;
10328 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) argument
H A DSemaDeclCXX.cpp11375 bool IsDependent = false; local
11379 MultiTemplateParamsArg(), Owned, IsDependent,
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp3668 bool IsDependent) const {
3669 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent)
3675 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent);
3681 IsDependent);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h1666 bool &OwnedDecl, bool &IsDependent,

Completed in 503 milliseconds