Lines Matching refs:infinity_
2719 infinity_(Floating::Infinity()), in FloatingPointTest()
2753 Matcher<RawType> m4 = matcher_maker(-infinity_); in TestMatches()
2756 Matcher<RawType> m5 = matcher_maker(infinity_); in TestMatches()
2797 const RawType infinity_; member in testing::gmock_matchers_test::FloatingPointTest
2837 Matcher<RawType> m3 = matcher_maker(ParentType::infinity_, 0.0); in TestNearMatches()
2838 EXPECT_TRUE(m3.Matches(ParentType::infinity_)); in TestNearMatches()
2840 EXPECT_FALSE(m3.Matches(-ParentType::infinity_)); in TestNearMatches()
2842 Matcher<RawType> m4 = matcher_maker(-ParentType::infinity_, 0.0); in TestNearMatches()
2843 EXPECT_TRUE(m4.Matches(-ParentType::infinity_)); in TestNearMatches()
2845 EXPECT_FALSE(m4.Matches(ParentType::infinity_)); in TestNearMatches()
2867 ParentType::max_, ParentType::infinity_); in TestNearMatches()