Home | History | Annotate | Download | only in src

Lines Matching full:val1

1029                                      double val1,
1032 const double diff = fabs(val1 - val2);
1040 << expr1 << " evaluates to " << val1 << ",\n"
1051 RawType val1,
1053 // Returns success if val1 is less than val2,
1054 if (val1 < val2) {
1058 // or if val1 is almost equal to val2.
1059 const FloatingPoint<RawType> lhs(val1), rhs(val2);
1064 // Note that the above two checks will both fail if either val1 or
1070 << val1;
1086 // Asserts that val1 is less than, or almost equal to, val2. Fails
1087 // otherwise. In particular, it fails if either val1 or val2 is NaN.
1089 float val1, float val2) {
1090 return internal::FloatingPointLE<float>(expr1, expr2, val1, val2);
1093 // Asserts that val1 is less than, or almost equal to, val2. Fails
1094 // otherwise. In particular, it fails if either val1 or val2 is NaN.
1096 double val1, double val2) {
1097 return internal::FloatingPointLE<double>(expr1, expr2, val1, val2);
1124 BiggestInt val1, BiggestInt val2) {\
1125 if (val1 op val2) {\
1130 << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\
1131 << " vs " << FormatForComparisonFailureMessage(val2, val1);\