Searched defs:FirstType (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp2635 QualType FirstType = FirstField->getType(); local
2636 if (FirstType->hasFloatingRepresentation() || FirstType->isVectorType()) {
2639 << FirstType->isVectorType() << FirstType;
2643 uint64_t FirstSize = S.Context.getTypeSize(FirstType);
2644 uint64_t FirstAlign = S.Context.getTypeAlign(FirstType);
H A DSemaStmt.cpp1732 QualType FirstType; local
1742 FirstType = D->getType();
1751 if (FirstType->getContainedAutoType()) {
1755 if (DeduceAutoType(D->getTypeSourceInfo(), DeducedInit, FirstType) ==
1758 if (FirstType.isNull()) {
1763 D->setType(FirstType);
1780 FirstType = static_cast<Expr*>(First)->getType();
1781 if (FirstType.isConstQualified())
1783 << FirstType << First->getSourceRange();
1785 if (!FirstType
[all...]
H A DSemaExpr.cpp10978 QualType FirstType, SecondType; local
10983 FirstType = DstType;
10994 FirstType = SrcType;
11001 FDiag << FirstType << SecondType << SrcExpr->getSourceRange();
11003 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange();
11017 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType);
11027 FirstType);

Completed in 181 milliseconds