Lines Matching refs:ParentType

2819   typedef FloatingPointTest<RawType> ParentType;
2829 EXPECT_FALSE(m1.Matches(ParentType::close_to_positive_zero_));
2830 EXPECT_FALSE(m1.Matches(ParentType::close_to_negative_zero_));
2838 EXPECT_FALSE(m2.Matches(ParentType::close_to_one_));
2839 EXPECT_FALSE(m2.Matches(-ParentType::close_to_one_));
2843 Matcher<RawType> m3 = matcher_maker(ParentType::infinity_, 0.0);
2844 EXPECT_TRUE(m3.Matches(ParentType::infinity_));
2845 EXPECT_FALSE(m3.Matches(ParentType::close_to_infinity_));
2846 EXPECT_FALSE(m3.Matches(-ParentType::infinity_));
2848 Matcher<RawType> m4 = matcher_maker(-ParentType::infinity_, 0.0);
2849 EXPECT_TRUE(m4.Matches(-ParentType::infinity_));
2850 EXPECT_FALSE(m4.Matches(-ParentType::close_to_infinity_));
2851 EXPECT_FALSE(m4.Matches(ParentType::infinity_));
2854 Matcher<RawType> m5 = matcher_maker(ParentType::max_, ParentType::max_);
2855 EXPECT_TRUE(m5.Matches(ParentType::max_));
2856 EXPECT_FALSE(m5.Matches(-ParentType::max_));
2858 Matcher<RawType> m6 = matcher_maker(-ParentType::max_, ParentType::max_);
2859 EXPECT_FALSE(m6.Matches(ParentType::max_));
2860 EXPECT_TRUE(m6.Matches(-ParentType::max_));
2862 Matcher<RawType> m7 = matcher_maker(ParentType::max_, 0);
2863 EXPECT_TRUE(m7.Matches(ParentType::max_));
2864 EXPECT_FALSE(m7.Matches(-ParentType::max_));
2866 Matcher<RawType> m8 = matcher_maker(-ParentType::max_, 0);
2867 EXPECT_FALSE(m8.Matches(ParentType::max_));
2868 EXPECT_TRUE(m8.Matches(-ParentType::max_));
2873 ParentType::max_, ParentType::infinity_);
2874 EXPECT_TRUE(m8.Matches(-ParentType::max_));
2880 EXPECT_TRUE(m10.Matches(ParentType::close_to_positive_zero_));
2881 EXPECT_FALSE(m10.Matches(ParentType::close_to_one_));
3000 Matcher<float> m = FloatNear(ParentType::nan1_, 0.1f);
3128 Matcher<double> m = DoubleNear(ParentType::nan1_, 0.1);