Lines Matching refs:AllOf

439   m = AllOf(Le(2), Ge(1));  in TEST()
445 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
451 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
458 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
467 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST()
468 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST()
469 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST()
470 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST()
471 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST()
472 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST()
474 AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8))); in TEST()
476 9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), Ne(9))); in TEST()
477 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
480 50, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), Ne(9), in TEST()
492 m = AllOf(Le(2), Ge(1)); in TEST()
495 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
500 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
506 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
516 m = AllOf(Le(2), Ge(1)); in TEST()
520 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
525 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
530 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
536 m = AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), Ne(9), in TEST()
538 AllOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11); in TEST()
549 Matcher<const int&> m = AllOf(greater_than_5, less_than_10); in TEST()
550 Matcher<int&> m2 = AllOf(greater_than_5, less_than_10); in TEST()
551 Matcher<int&> m3 = AllOf(greater_than_5, m2); in TEST()
554 Matcher<const int&> m4 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
555 Matcher<int&> m5 = AllOf(greater_than_5, less_than_10, less_than_10); in TEST()
564 m = AllOf(GreaterThan(10), Lt(30)); in TEST_P()
568 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST_P()
574 m = AllOf(GreaterThan(10), Lt(30), GreaterThan(20)); in TEST_P()
579 m = AllOf(GreaterThan(10), GreaterThan(20), GreaterThan(30)); in TEST_P()
587 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST_P()
593 m = AllOf(GreaterThan(10), Lt(30)); in TEST_P()
598 m = AllOf(GreaterThan(10), GreaterThan(20)); in TEST_P()
915 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
1453 EXPECT_THAT(0, testing::AllOf(_, _, _, _, _, _, _, _, _, in TEST()
1454 testing::AllOf(_, _, _, _, _, _, _, _, _, _))); in TEST()
1479 bool AllOf(const T1& /*t1*/, const T2& /*t2*/) { in AllOf() function
1485 testing::AllOf(M(), M(), M(), M(), M(), M(), M(), M(), M(), M())); in TEST()
1502 EXPECT_THAT(p, AllOf(Pointee(Eq(3)), Pointee(Gt(0)), Pointee(Lt(5)))); in TEST()
1503 EXPECT_THAT(p, Not(AllOf(Pointee(Eq(3)), Pointee(Gt(0)), Pointee(Lt(3))))); in TEST()