HomeSort by: relevance | last modified time | path
    Searched refs:VectorEltTy (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 9733 QualType vectorEltTy,
9740 if (vectorEltTy->isIntegralType(S.Context)) {
9743 S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0))) {
9750 } else if (vectorEltTy->isRealFloatingType()) {
9753 S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0) {
9770 *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast);
9888 QualType VectorEltTy = VT->getElementType();
9892 if (!VectorEltTy->isArithmeticType() || !ScalarTy->isArithmeticType())
9906 if (VectorEltTy->isIntegralType(S.Context) &&
9908 S.Context.getIntegerTypeOrder(VectorEltTy, ScalarTy))
    [all...]
SemaChecking.cpp 2596 QualType VectorEltTy = VectorTy->castAs<VectorType>()->getElementType();
2597 if (!Context.hasSameType(VectorEltTy, EltTy)) {
2599 << Call->getSourceRange() << VectorEltTy << EltTy;

Completed in 96 milliseconds