Home | History | Annotate | Download | only in Sema

Lines Matching refs:CondTy

5432   QualType CondTy = Cond->getType();
5435 if (CondTy->isScalarType()) return false;
5438 if (S.getLangOpts().OpenCL && CondTy->isVectorType())
5445 << CondTy;
5453 QualType CondTy) {
5457 << CondTy;
5462 << CondTy;
5467 LHS = S.ImpCastExprToType(LHS.get(), CondTy, CK_IntegralCast);
5468 RHS = S.ImpCastExprToType(RHS.get(), CondTy, CK_IntegralCast);
5727 QualType CondTy = Cond.get()->getType();
5734 if (getLangOpts().OpenCL && CondTy->isVectorType())
5735 if (checkConditionalConvertScalarsToVectors(*this, LHS, RHS, CondTy))