Lines Matching refs:infinity_
2717 infinity_(Floating::Infinity()), in FloatingPointTest()
2749 Matcher<RawType> m4 = matcher_maker(-infinity_); in TestMatches()
2752 Matcher<RawType> m5 = matcher_maker(infinity_); in TestMatches()
2793 const RawType infinity_; member in testing::gmock_matchers_test::FloatingPointTest
2839 Matcher<RawType> m3 = matcher_maker(ParentType::infinity_, 0.0); in TestNearMatches()
2840 EXPECT_TRUE(m3.Matches(ParentType::infinity_)); in TestNearMatches()
2842 EXPECT_FALSE(m3.Matches(-ParentType::infinity_)); in TestNearMatches()
2844 Matcher<RawType> m4 = matcher_maker(-ParentType::infinity_, 0.0); in TestNearMatches()
2845 EXPECT_TRUE(m4.Matches(-ParentType::infinity_)); in TestNearMatches()
2847 EXPECT_FALSE(m4.Matches(ParentType::infinity_)); in TestNearMatches()
2869 ParentType::max_, ParentType::infinity_); in TestNearMatches()