Searched refs:DeducedType (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/Sema/
H A DSemaLambda.cpp483 QualType DeducedType; local
484 if (DeduceAutoType(TSI, Init, DeducedType) == DAR_Failed) {
492 if (DeducedType.isNull())
499 Id, DeducedType, TSI, LSI->Lambda,
H A DSemaTemplateDeduction.cpp1071 QualType DeducedType = Arg; local
1075 Qualifiers DeducedQs = DeducedType.getQualifiers();
1088 if (ParamQs.hasObjCLifetime() && !DeducedType->isObjCLifetimeType() &&
1089 !DeducedType->isDependentType()) {
1100 DeducedType->isObjCLifetimeType() &&
1104 DeducedType = S.Context.getQualifiedType(DeducedType.getUnqualifiedType(),
1108 DeducedType = S.Context.getCanonicalType(DeducedType);
1110 DeducedTemplateArgument NewDeduced(DeducedType);
[all...]
H A DSemaExprCXX.cpp1145 QualType DeducedType; local
1146 if (DeduceAutoType(AllocTypeInfo, Deduce, DeducedType) == DAR_Failed)
1150 if (DeducedType.isNull())
1152 AllocType = DeducedType;
H A DSemaDecl.cpp7899 QualType DeducedType; local
7900 if (DeduceAutoType(VDecl->getTypeSourceInfo(), DeduceInit, DeducedType) ==
7903 if (DeducedType.isNull()) {
7907 VDecl->setType(DeducedType);
7919 DeducedType->isObjCIdType()) {
/external/clang/include/clang/AST/
H A DType.h3617 AutoType(QualType DeducedType, bool IsDecltypeAuto, bool IsDependent) argument
3618 : Type(Auto, DeducedType.isNull() ? QualType(this, 0) : DeducedType,
3621 assert((DeducedType.isNull() || !IsDependent) &&
H A DASTContext.h1117 QualType getAutoType(QualType DeducedType, bool IsDecltypeAuto,
/external/clang/lib/AST/
H A DASTContext.cpp3656 QualType ASTContext::getAutoType(QualType DeducedType, bool IsDecltypeAuto, argument
3658 if (DeducedType.isNull() && !IsDecltypeAuto && !IsDependent)
3664 AutoType::Profile(ID, DeducedType, IsDecltypeAuto, IsDependent);
3668 AutoType *AT = new (*this, TypeAlignment) AutoType(DeducedType,

Completed in 279 milliseconds