Lines Matching refs:MaybeCastToBool
902 auto MaybeCastToBool = [this, T, BO](bool Result) { in VisitBinaryOperator() local
920 return MaybeCastToBool(this->emitEQ(*LT, BO)); in VisitBinaryOperator()
922 return MaybeCastToBool(this->emitNE(*LT, BO)); in VisitBinaryOperator()
924 return MaybeCastToBool(this->emitLT(*LT, BO)); in VisitBinaryOperator()
926 return MaybeCastToBool(this->emitLE(*LT, BO)); in VisitBinaryOperator()
928 return MaybeCastToBool(this->emitGT(*LT, BO)); in VisitBinaryOperator()
930 return MaybeCastToBool(this->emitGE(*LT, BO)); in VisitBinaryOperator()
1582 auto MaybeCastToBool = [&](bool Result) { in VisitFixedPointBinOp() local
1595 return MaybeCastToBool(this->emitEQFixedPoint(E)); in VisitFixedPointBinOp()
1597 return MaybeCastToBool(this->emitNEFixedPoint(E)); in VisitFixedPointBinOp()
1599 return MaybeCastToBool(this->emitLTFixedPoint(E)); in VisitFixedPointBinOp()
1601 return MaybeCastToBool(this->emitLEFixedPoint(E)); in VisitFixedPointBinOp()
1603 return MaybeCastToBool(this->emitGTFixedPoint(E)); in VisitFixedPointBinOp()
1605 return MaybeCastToBool(this->emitGEFixedPoint(E)); in VisitFixedPointBinOp()