Home
last modified time | relevance | path

Searched refs:FirstType (Results 1 – 4 of 4) sorted by relevance

/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
Dp5-0x.cpp11 template<typename R, typename FirstType, typename ...Types>
12 struct has_nondeduced_pack_test<R(FirstType, Types..., int),
13 R(FirstType, Types...)> {
/external/clang/lib/Sema/
DSemaStmt.cpp1732 QualType FirstType; in ActOnObjCForCollectionStmt() local
1742 FirstType = D->getType(); in ActOnObjCForCollectionStmt()
1751 if (FirstType->getContainedAutoType()) { in ActOnObjCForCollectionStmt()
1755 if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) == in ActOnObjCForCollectionStmt()
1758 if (FirstType.isNull()) { in ActOnObjCForCollectionStmt()
1763 D->setType(FirstType); in ActOnObjCForCollectionStmt()
1780 FirstType = static_cast<Expr*>(First)->getType(); in ActOnObjCForCollectionStmt()
1781 if (FirstType.isConstQualified()) in ActOnObjCForCollectionStmt()
1783 << FirstType << First->getSourceRange(); in ActOnObjCForCollectionStmt()
1785 if (!FirstType->isDependentType() && in ActOnObjCForCollectionStmt()
[all …]
DSemaDeclAttr.cpp2635 QualType FirstType = FirstField->getType(); in handleTransparentUnionAttr() local
2636 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
2639 << FirstType->isVectorType() << FirstType; in handleTransparentUnionAttr()
2643 uint64_t FirstSize = S.Context.getTypeSize(FirstType); in handleTransparentUnionAttr()
2644 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); in handleTransparentUnionAttr()
DSemaExpr.cpp10978 QualType FirstType, SecondType; in DiagnoseAssignmentResult() local
10983 FirstType = DstType; in DiagnoseAssignmentResult()
10994 FirstType = SrcType; in DiagnoseAssignmentResult()
11001 FDiag << FirstType << SecondType << SrcExpr->getSourceRange(); in DiagnoseAssignmentResult()
11003 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); in DiagnoseAssignmentResult()
11017 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); in DiagnoseAssignmentResult()
11027 FirstType); in DiagnoseAssignmentResult()