Lines Matching full:val1
2343 double val1,
2346 const double diff = fabs(val1 - val2);
2354 << expr1 << " evaluates to " << val1 << ",\n"
2364 RawType val1,
2366 // Returns success if val1 is less than val2,
2367 if (val1 < val2) {
2371 // or if val1 is almost equal to val2.
2372 const FloatingPoint<RawType> lhs(val1), rhs(val2);
2377 // Note that the above two checks will both fail if either val1 or
2383 << val1;
2397 // Asserts that val1 is less than, or almost equal to, val2. Fails
2398 // otherwise. In particular, it fails if either val1 or val2 is NaN.
2400 float val1, float val2) {
2401 return internal::FloatingPointLE<float>(expr1, expr2, val1, val2);
2404 // Asserts that val1 is less than, or almost equal to, val2. Fails
2405 // otherwise. In particular, it fails if either val1 or val2 is NaN.
2407 double val1, double val2) {
2408 return internal::FloatingPointLE<double>(expr1, expr2, val1, val2);
2435 BiggestInt val1, BiggestInt val2) {\
2436 if (val1 op val2) {\
2441 << "), actual: " << FormatForComparisonFailureMessage(val1, val2)\
2442 << " vs " << FormatForComparisonFailureMessage(val2, val1);\