Lines Matching defs:Not
159 // Not()).
866 // to write Not(A<bool>()). However we cannot completely rule out
1439 // Implements the Not(...) matcher for a particular argument type T.
1467 // Implements the Not(m) matcher, which matches a value that doesn't
1474 // This template type conversion operator allows Not(m) to be used
3800 // This is convenient as Not(NULL) doesn't compile (the compiler
4107 inline internal::NotMatcher<InnerMatcher> Not(InnerMatcher m) {
4272 // EXPECT_THAT(page_ids, Not(Contains(4)));
4289 // Each(m) is semantically equivalent to Not(Contains(Not(m))). Only
4300 // EXPECT_THAT(page_ids, Not(Each(Gt(4))));
4302 // EXPECT_THAT(page_ids, Not(Each(Lt(2))));
4308 // EXPECT_THAT(page_lengths, Not(Each(Pair(1, 100))));
4312 // EXPECT_THAT(user_ids, Not(Each(Eq(::std::string("tom")))));