Lines Matching defs:expected_
1653 : expected_(expected), nan_eq_nan_(nan_eq_nan), max_abs_error_(-1) {}
1660 : expected_(expected),
1672 : expected_(expected),
1678 const FloatingPoint<FloatType> actual(value), expected(expected_);
1690 // of error bounds. If the result of value - expected_ would result in
1693 if (value == expected_) {
1697 const FloatType diff = value - expected_;
1703 *listener << "which is " << diff << " from " << expected_;
1717 if (FloatingPoint<FloatType>(expected_).is_nan()) {
1724 *os << "is approximately " << expected_;
1736 if (FloatingPoint<FloatType>(expected_).is_nan()) {
1743 *os << "isn't approximately " << expected_;
1755 const FloatType expected_;
1766 new Impl<FloatType>(expected_, nan_eq_nan_, max_abs_error_));
1771 new Impl<const FloatType&>(expected_, nan_eq_nan_, max_abs_error_));
1776 new Impl<FloatType&>(expected_, nan_eq_nan_, max_abs_error_));
1780 const FloatType expected_;
2421 : expected_(View::Copy(expected)) {}
2425 UniversalPrint(expected_, os);
2429 UniversalPrint(expected_, os);
2439 if (lhs_stl_container == expected_) return true;
2447 if (internal::ArrayAwareFind(expected_.begin(), expected_.end(), *it) ==
2448 expected_.end()) {
2461 for (auto it = expected_.begin(); it != expected_.end(); ++it) {
2481 const StlContainer expected_;