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

/external/clang/lib/Parse/
H A DParseDeclCXX.cpp1564 bool IsDependent = false; local
1578 TParams, Owned, IsDependent,
1584 if (IsDependent) {
H A DParseDecl.cpp3650 bool IsDependent = false; local
3656 Owned, IsDependent, ScopedEnumKWLoc,
3659 if (IsDependent) {
/external/clang/lib/Sema/
H A DSemaCodeComplete.cpp3610 bool IsDependent = BaseType->isDependentType(); local
3611 if (!IsDependent) {
3614 IsDependent = Ctx->isDependentContext();
3619 if (IsDependent)
H A DSemaTemplate.cpp6991 bool IsDependent = false; local
6995 MultiTemplateParamsArg(), Owned, IsDependent,
6997 assert(!IsDependent && "explicit instantiation of dependent name not yet handled");
H A DSemaDecl.cpp10038 bool &OwnedDecl, bool &IsDependent,
10148 IsDependent = true;
10179 IsDependent = true;
10032 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.cpp11067 bool IsDependent = false; local
11071 MultiTemplateParamsArg(), Owned, IsDependent,
/external/clang/include/clang/AST/
H A DType.h3617 AutoType(QualType DeducedType, bool IsDecltypeAuto, bool IsDependent) argument
3619 /*Dependent=*/IsDependent, /*InstantiationDependent=*/IsDependent,
3621 assert((DeducedType.isNull() || !IsDependent) &&
3648 bool IsDecltypeAuto, bool IsDependent) {
3651 ID.AddBoolean(IsDependent);
3647 Profile(llvm::FoldingSetNodeID &ID, QualType Deduced, bool IsDecltypeAuto, bool IsDependent) argument
/external/clang/lib/Serialization/
H A DASTReader.cpp4737 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false; local
4738 return Context.getAutoType(Deduced, IsDecltypeAuto, IsDependent);
4747 bool IsDependent = Record[Idx++]; local
4751 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
4761 bool IsDependent = Record[Idx++]; local
4764 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
4914 bool IsDependent = Record[Idx++]; local
4926 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);

Completed in 311 milliseconds