Lines Matching refs:AllOf
82 using testing::AllOf;
2000 m = AllOf(Le(2), Ge(1)); in TEST()
2006 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2012 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2019 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2028 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST()
2029 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST()
2030 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST()
2031 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST()
2032 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST()
2033 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST()
2034 AllOfMatches(8, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
2036 AllOfMatches(9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
2038 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2047 ::testing::AllOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); in TEST()
2048 Matcher<int> m = AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2052 AllOfMatches(50, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2067 m = AllOf(Le(2), Ge(1)); in TEST()
2070 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2077 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2085 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2097 m = AllOf(Le(2), Ge(1)); in TEST()
2102 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2109 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2117 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2132 Matcher<const int&> m = AllOf(greater_than_5, less_than_10); in TEST()
2133 Matcher<int&> m2 = AllOf(greater_than_5, less_than_10); in TEST()
2134 Matcher<int&> m3 = AllOf(greater_than_5, m2); in TEST()
2137 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2138 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2147 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2151 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2157 m = AllOf(GreaterThan(10), Lt(30), GreaterThan(20)); in TEST()
2162 m = AllOf(GreaterThan(10), GreaterThan(20), GreaterThan(30)); in TEST()
2169 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2175 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2180 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2466 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
2566 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
2589 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))), in TEST()
2602 EXPECT_THAT(n, AllOf(Le(7), Ref(n))); in TEST()
3814 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
3821 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
3828 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
3835 const Matcher<int> m = AllOf(DivisibleBy(2), DivisibleBy(3)); in TEST()
3840 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()