Lines Matching refs:AllOf
2504 m = AllOf(Le(2), Ge(1)); in TEST()
2510 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2516 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2523 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2532 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST()
2533 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST()
2534 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST()
2535 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST()
2536 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST()
2537 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST()
2538 AllOfMatches(8, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
2540 AllOfMatches(9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), in TEST()
2542 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
2545 50, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), Ne(9), in TEST()
2558 m = AllOf(Le(2), Ge(1)); in TEST()
2561 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2566 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2572 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2582 m = AllOf(Le(2), Ge(1)); in TEST()
2586 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
2591 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
2596 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
2602 m = AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), Ne(9), in TEST()
2604 AllOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); in TEST()
2615 Matcher<const int&> m = AllOf(greater_than_5, less_than_10); in TEST()
2616 Matcher<int&> m2 = AllOf(greater_than_5, less_than_10); in TEST()
2617 Matcher<int&> m3 = AllOf(greater_than_5, m2); in TEST()
2620 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2621 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
2630 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2634 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2640 m = AllOf(GreaterThan(10), Lt(30), GreaterThan(20)); in TEST()
2645 m = AllOf(GreaterThan(10), GreaterThan(20), GreaterThan(30)); in TEST()
2652 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2658 m = AllOf(GreaterThan(10), Lt(30)); in TEST()
2663 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST()
2980 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
3134 EXPECT_THAT(2, AllOf(Le(7), Ge(0))) << "This should succeed too."; in TEST()
3157 EXPECT_THAT(n, ::testing::AllOf(::testing::Le(7), ::testing::Ge(5))), in TEST()
3170 EXPECT_THAT(n, AllOf(Le(7), Ref(n))); in TEST()
4638 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
4645 const Matcher<int> m = AllOf(DivisibleBy(4), DivisibleBy(3)); in TEST()
4652 const Matcher<int> m = AllOf(Ge(1), DivisibleBy(3)); in TEST()
4659 const Matcher<int> m = AllOf(DivisibleBy(2), DivisibleBy(3)); in TEST()
4664 const Matcher<int> m = AllOf(Ge(2), Le(3)); in TEST()