Lines Matching refs:Ne

116 using testing::Ne;
988 // Tests that Ne(v) matches anything != v.
990 Matcher<int> m1 = Ne(0);
996 // Tests that Ne(v) describes itself properly.
998 Matcher<int> m = Ne(5);
2006 // Tests that Ne() matches a 2-tuple where the first field != the
2009 Matcher<const Tuple2&> m = Ne();
2015 // Tests that Ne() describes itself properly.
2017 Matcher<const Tuple2&> m = Ne();
2065 m = AllOf(Gt(0), Ne(1), Ne(2));
2071 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2078 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2087 AllOfMatches(2, AllOf(Ne(1), Ne(2)));
2088 AllOfMatches(3, AllOf(Ne(1), Ne(2), Ne(3)));
2089 AllOfMatches(4, AllOf(Ne(1), Ne(2), Ne(3), Ne(4)));
2090 AllOfMatches(5, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5)));
2091 AllOfMatches(6, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6)));
2092 AllOfMatches(7, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7)));
2093 AllOfMatches(8, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7),
2094 Ne(8)));
2095 AllOfMatches(9, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7),
2096 Ne(8), Ne(9)));
2097 AllOfMatches(10, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8),
2098 Ne(9), Ne(10)));
2107 Matcher<int> m = AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8),
2108 Ne(9), Ne(10), Ne(11));
2111 AllOfMatches(50, AllOf(Ne(1), Ne(2), Ne(3), Ne(4), Ne(5), Ne(6), Ne(7), Ne(8),
2112 Ne(9), Ne(10), Ne(11), Ne(12), Ne(13), Ne(14), Ne(15),
2113 Ne(16), Ne(17), Ne(18), Ne(19), Ne(20), Ne(21), Ne(22),
2114 Ne(23), Ne(24), Ne(25), Ne(26), Ne(27), Ne(28), Ne(29),
2115 Ne(30), Ne(31), Ne(32), Ne(33), Ne(34), Ne(35), Ne(36),
2116 Ne(37), Ne(38), Ne(39), Ne(40), Ne(41), Ne(42), Ne(43),
2117 Ne(44), Ne(45), Ne(46), Ne(47), Ne(48), Ne(49),
2118 Ne(50)));
2129 m = AllOf(Gt(0), Ne(1), Ne(2));
2136 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2144 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
2161 m = AllOf(Gt(0), Ne(1), Ne(2));
2168 m = AllOf(Gt(0), Ne(1), Ne(2), Ne(3));
2176 m = AllOf(Ge(0), Lt(10), Ne(3), Ne(5), Ne(7));
4786 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(5)}));
4788 {Eq(1), Ne(-2), Ge(3), Le(4), Eq(6)})));