Lines Matching refs:AllOf
77 using testing::AllOf;
1931 m = AllOf(Le(2), Ge(1)); in TEST()
1937 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
1943 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
1950 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
1959 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST()
1960 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST()
1961 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST()
1962 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST()
1963 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST()
1964 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST()
1965 AllOfMatches(8, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
1967 AllOfMatches(9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
1969 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
1976 m = AllOf(Le(2), Ge(1)); in TEST()
1979 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
1986 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
1994 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2006 m = AllOf(Le(2), Ge(1)); in TEST()
2011 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2018 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2026 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2041 Matcher<const int&> m = AllOf(greater_than_5, less_than_10); in TEST()
2042 Matcher<int&> m2 = AllOf(greater_than_5, less_than_10); in TEST()
2043 Matcher<int&> m3 = AllOf(greater_than_5, m2); in TEST()
2046 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2047 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2056 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2060 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2066 m = AllOf(GreaterThan(10), Lt(30), GreaterThan(20)); in TEST()
2071 m = AllOf(GreaterThan(10), GreaterThan(20), GreaterThan(30)); in TEST()
2078 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2084 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2089 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2357 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
2457 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
2480 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))), in TEST()
2493 EXPECT_THAT(n, AllOf(Le(7), Ref(n))); in TEST()
3531 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
3538 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
3545 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
3552 const Matcher<int> m = AllOf(DivisibleBy(2), DivisibleBy(3)); in TEST()
3557 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()