Lines Matching refs:infinity_
3219 infinity_(Floating::Infinity()), in FloatingPointTest()
3253 Matcher<RawType> m4 = matcher_maker(-infinity_); in TestMatches()
3256 Matcher<RawType> m5 = matcher_maker(infinity_); in TestMatches()
3297 const RawType infinity_; member in testing::gmock_matchers_test::__anond473036a0111::FloatingPointTest
3337 Matcher<RawType> m3 = matcher_maker(ParentType::infinity_, 0.0); in TestNearMatches()
3338 EXPECT_TRUE(m3.Matches(ParentType::infinity_)); in TestNearMatches()
3340 EXPECT_FALSE(m3.Matches(-ParentType::infinity_)); in TestNearMatches()
3342 Matcher<RawType> m4 = matcher_maker(-ParentType::infinity_, 0.0); in TestNearMatches()
3343 EXPECT_TRUE(m4.Matches(-ParentType::infinity_)); in TestNearMatches()
3345 EXPECT_FALSE(m4.Matches(ParentType::infinity_)); in TestNearMatches()
3367 ParentType::max_, ParentType::infinity_); in TestNearMatches()