Searched defs:IsDependent (Results 1 - 8 of 8) sorted by relevance

/external/clang/lib/Parse/
H A DParseDeclCXX.cpp1735 bool IsDependent = false; local
1751 TParams, Owned, IsDependent,
1759 if (IsDependent) {
H A DParseDecl.cpp4081 bool IsDependent = false; local
4087 Owned, IsDependent, ScopedEnumKWLoc,
4106 if (IsDependent) {
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3710 bool IsDependent = BaseType->isDependentType(); local
3711 if (!IsDependent) {
3714 IsDependent = Ctx->isDependentContext();
3719 if (IsDependent)
H A DSemaTemplate.cpp7612 bool IsDependent = false; local
7616 MultiTemplateParamsArg(), Owned, IsDependent,
7619 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
H A DSemaDecl.cpp12263 bool &OwnedDecl, bool &IsDependent,
12380 IsDependent = true;
12411 IsDependent = true;
12257 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.cpp12545 bool IsDependent = false; local
12549 MultiTemplateParamsArg(), Owned, IsDependent,
/external/clang/lib/Serialization/
H A DASTReader.cpp5452 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; local
5453 return Context.getAutoType(Deduced, Keyword, IsDependent);
5462 bool IsDependent = Record[Idx++]; local
5466 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
5476 bool IsDependent = Record[Idx++]; local
5479 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
5645 bool IsDependent = Record[Idx++]; local
5655 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
/external/clang/include/clang/AST/
H A DType.h4088 AutoType(QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent) argument
4090 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent,
4094 assert((DeducedType.isNull() || !IsDependent) &&
4126 AutoTypeKeyword Keyword, bool IsDependent) {
4129 ID.AddBoolean(IsDependent);
4125 Profile(llvm::FoldingSetNodeID &ID, QualType Deduced, AutoTypeKeyword Keyword, bool IsDependent) argument

Completed in 251 milliseconds