Searched defs:DeducedType (Results 1 - 6 of 6) sorted by relevance
/external/clang/lib/Sema/ |
H A D | SemaLambda.cpp | 720 QualType DeducedType = deduceVarTypeFromInitializer( local 723 if (DeducedType.isNull()) 732 InitializedEntity::InitializeLambdaCapture(Id, DeducedType, Loc); 762 return DeducedType;
|
H A D | SemaTemplateDeduction.cpp | 1094 QualType DeducedType = Arg; local 1098 Qualifiers DeducedQs = DeducedType.getQualifiers(); 1111 if (ParamQs.hasObjCLifetime() && !DeducedType->isObjCLifetimeType() && 1112 !DeducedType->isDependentType()) { 1123 DeducedType->isObjCLifetimeType() && 1127 DeducedType = S.Context.getQualifiedType(DeducedType.getUnqualifiedType(), 1131 DeducedType = S.Context.getCanonicalType(DeducedType); 1133 DeducedTemplateArgument NewDeduced(DeducedType); [all...] |
H A D | SemaExprCXX.cpp | 1318 QualType DeducedType; local 1319 if (DeduceAutoType(AllocTypeInfo, Deduce, DeducedType) == DAR_Failed) 1323 if (DeducedType.isNull()) 1325 AllocType = DeducedType;
|
H A D | SemaDecl.cpp | 9143 QualType DeducedType; local 9144 if (DeduceAutoType(TSI, DeduceInit, DeducedType) == DAR_Failed) { 9168 !IsInitCapture && !DeducedType.isNull() && DeducedType->isObjCIdType()) { 9173 return DeducedType; 9216 QualType DeducedType = deduceVarTypeFromInitializer( local 9219 if (DeducedType.isNull()) { 9224 VDecl->setType(DeducedType);
|
/external/clang/include/clang/AST/ |
H A D | Type.h | 3918 AutoType(QualType DeducedType, AutoTypeKeyword Keyword, bool IsDependent) argument 3919 : Type(Auto, DeducedType.isNull() ? QualType(this, 0) : DeducedType, 3922 /*ContainsParameterPack=*/DeducedType.isNull() 3923 ? false : DeducedType->containsUnexpandedParameterPack()) { 3924 assert((DeducedType.isNull() || !IsDependent) &&
|
/external/clang/lib/AST/ |
H A D | ASTContext.cpp | 3986 QualType ASTContext::getAutoType(QualType DeducedType, AutoTypeKeyword Keyword, argument 3988 if (DeducedType.isNull() && Keyword == AutoTypeKeyword::Auto && !IsDependent) 3994 AutoType::Profile(ID, DeducedType, Keyword, IsDependent); 3998 AutoType *AT = new (*this, TypeAlignment) AutoType(DeducedType,
|
Completed in 256 milliseconds