Lines Matching defs:Not
143 // EXPECT_THAT(3, Not(InClosedRange(2, 4)));
158 // EXPECT_THAT(3, Not(InClosedRange(2, 4)));
754 // to write Not(A<bool>()). However we cannot completely rule out
1227 // Implements the Not(...) matcher for a particular argument type T.
1253 // Implements the Not(m) matcher, which matches a value that doesn't
1260 // This template type conversion operator allows Not(m) to be used
4261 // This is convenient as Not(NULL) doesn't compile (the compiler
4659 inline internal::NotMatcher<InnerMatcher> Not(InnerMatcher m) {
4802 // EXPECT_THAT(page_ids, Not(Contains(4))); // See below for Times(0)
4950 // Each(m) is semantically equivalent to `Not(Contains(Not(m)))`. Only
4961 // EXPECT_THAT(page_ids, Not(Each(Gt(4))));
4963 // EXPECT_THAT(page_ids, Not(Each(Lt(2))));
4969 // EXPECT_THAT(page_lengths, Not(Each(Pair(1, 100))));
4973 // EXPECT_THAT(user_ids, Not(Each(Eq(::std::string("tom")))));