Lines Matching refs:expected_
1603 expected_(expected), nan_eq_nan_(nan_eq_nan), max_abs_error_(-1) {
1611 : expected_(expected),
1623 : expected_(expected),
1629 const FloatingPoint<FloatType> actual(value), expected(expected_);
1644 if (value == expected_) {
1648 const FloatType diff = value - expected_;
1654 *listener << "which is " << diff << " from " << expected_;
1668 if (FloatingPoint<FloatType>(expected_).is_nan()) {
1675 *os << "is approximately " << expected_;
1687 if (FloatingPoint<FloatType>(expected_).is_nan()) {
1694 *os << "isn't approximately " << expected_;
1708 const FloatType expected_;
1719 new Impl<FloatType>(expected_, nan_eq_nan_, max_abs_error_));
1724 new Impl<const FloatType&>(expected_, nan_eq_nan_, max_abs_error_));
1729 new Impl<FloatType&>(expected_, nan_eq_nan_, max_abs_error_));
1733 const FloatType expected_;
2352 : expected_(View::Copy(expected)) {}
2356 UniversalPrint(expected_, os);
2360 UniversalPrint(expected_, os);
2371 if (lhs_stl_container == expected_)
2381 if (internal::ArrayAwareFind(expected_.begin(), expected_.end(), *it) ==
2382 expected_.end()) {
2395 for (typename StlContainer::const_iterator it = expected_.begin();
2396 it != expected_.end(); ++it) {
2416 const StlContainer expected_;