Home | History | Annotate | Download | only in gmock

Lines Matching defs:expected_

1897     expected_(expected), nan_eq_nan_(nan_eq_nan), max_abs_error_(-1) {
1905 : expected_(expected),
1917 : expected_(expected),
1923 const FloatingPoint<FloatType> actual(value), expected(expected_);
1935 // of error bounds. If the result of value - expected_ would result in
1938 if (value == expected_) {
1942 const FloatType diff = value - expected_;
1948 *listener << "which is " << diff << " from " << expected_;
1962 if (FloatingPoint<FloatType>(expected_).is_nan()) {
1969 *os << "is approximately " << expected_;
1981 if (FloatingPoint<FloatType>(expected_).is_nan()) {
1988 *os << "isn't approximately " << expected_;
2002 const FloatType expected_;
2018 new Impl<FloatType>(expected_, nan_eq_nan_, max_abs_error_));
2023 new Impl<const FloatType&>(expected_, nan_eq_nan_, max_abs_error_));
2028 new Impl<FloatType&>(expected_, nan_eq_nan_, max_abs_error_));
2032 const FloatType expected_;
2530 : expected_(View::Copy(expected)) {
2539 UniversalPrint(expected_, os);
2543 UniversalPrint(expected_, os);
2555 if (lhs_stl_container == expected_)
2565 if (internal::ArrayAwareFind(expected_.begin(), expected_.end(), *it) ==
2566 expected_.end()) {
2579 for (typename StlContainer::const_iterator it = expected_.begin();
2580 it != expected_.end(); ++it) {
2600 const StlContainer expected_;