Lines Matching full:ne
127 // Tests that Ne() matches a 2-tuple where the first field != the
130 Matcher<const Tuple2&> m = Ne(); in TEST()
136 // Tests that Ne() describes itself properly.
138 Matcher<const Tuple2&> m = Ne(); in TEST()
447 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
453 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
460 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
469 AllOfMatches(2, AllOf(Ne(1), Ne(2))); in TEST()
470 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3))); in TEST()
471 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4))); in TEST()
472 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5))); in TEST()
473 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6))); in TEST()
474 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7))); in TEST()
476 AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8))); in TEST()
478 9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), Ne(9))); in TEST()
479 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), in TEST()
480 Ne(9), Ne(10))); in TEST()
482 50, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), Ne(9), in TEST()
483 Ne(10), Ne(11), Ne(12), Ne(13), Ne(14), Ne(15), Ne(16), Ne(17), in TEST()
484 Ne(18), Ne(19), Ne(20), Ne(21), Ne(22), Ne(23), Ne(24), Ne(25), in TEST()
485 Ne(26), Ne(27), Ne(28), Ne(29), Ne(30), Ne(31), Ne(32), Ne(33), in TEST()
486 Ne(34), Ne(35), Ne(36), Ne(37), Ne(38), Ne(39), Ne(40), Ne(41), in TEST()
487 Ne(42), Ne(43), Ne(44), Ne(45), Ne(46), Ne(47), Ne(48), Ne(49), in TEST()
488 Ne(50))); in TEST()
497 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
502 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
508 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
522 m = AllOf(Gt(0), Ne(1), Ne(2)); in TEST()
527 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3)); in TEST()
532 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7)); in TEST()
538 m = AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8), Ne(9), in TEST()
539 Ne(10), Ne(11)); in TEST()
691 Matcher<std::string> ne_red = Ne("red"); in TEST()
705 Matcher<std::string> ne_red = Ne("red"); in TEST()