Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp5-0x.cpp11 template<typename R, typename FirstType, typename ...Types>
12 struct has_nondeduced_pack_test<R(FirstType, Types..., int),
13 R(FirstType, Types...)> {
/minix/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaStmt.cpp1760 QualType FirstType; in ActOnObjCForCollectionStmt() local
1770 FirstType = D->getType(); in ActOnObjCForCollectionStmt()
1779 if (FirstType->getContainedAutoType()) { in ActOnObjCForCollectionStmt()
1786 if (FirstType.isNull()) { in ActOnObjCForCollectionStmt()
1791 D->setType(FirstType); in ActOnObjCForCollectionStmt()
1808 FirstType = static_cast<Expr*>(First)->getType(); in ActOnObjCForCollectionStmt()
1809 if (FirstType.isConstQualified()) in ActOnObjCForCollectionStmt()
1811 << FirstType << First->getSourceRange(); in ActOnObjCForCollectionStmt()
1813 if (!FirstType->isDependentType() && in ActOnObjCForCollectionStmt()
1814 !FirstType->isObjCObjectPointerType() && in ActOnObjCForCollectionStmt()
[all …]
H A DSemaDeclAttr.cpp2707 QualType FirstType = FirstField->getType(); in handleTransparentUnionAttr() local
2708 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) { in handleTransparentUnionAttr()
2711 << FirstType->isVectorType() << FirstType; in handleTransparentUnionAttr()
2715 uint64_t FirstSize = S.Context.getTypeSize(FirstType); in handleTransparentUnionAttr()
2716 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType); in handleTransparentUnionAttr()
H A DSemaExpr.cpp11157 QualType FirstType, SecondType; in DiagnoseAssignmentResult() local
11162 FirstType = DstType; in DiagnoseAssignmentResult()
11173 FirstType = SrcType; in DiagnoseAssignmentResult()
11180 FDiag << FirstType << SecondType << AA_Passing << SrcExpr->getSourceRange(); in DiagnoseAssignmentResult()
11182 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange(); in DiagnoseAssignmentResult()
11196 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType); in DiagnoseAssignmentResult()
11206 FirstType); in DiagnoseAssignmentResult()