Home | History | Annotate | Download | only in docs

Lines Matching full:notnull

646 using ::testing::NotNull;
651 EXPECT_CALL(foo, DoThat("Hello", NotNull()));
659 using ::testing::NotNull;
661 EXPECT_CALL(foo, DoThat(_, NotNull()));
1057 like `IsNull()`, `NotNull()`, and other comparison matchers to match a
1079 AllOf(NotNull(), Pointee(m))
1665 using ::testing::NotNull;
1677 EXPECT_CALL(mutator, Mutate(NotNull(), 5))
2365 EXPECT_CALL(mock_buzzer_, DoShareBuzz(NotNull(), _));
2408 EXPECT_CALL(mock_buzzer_, DoShareBuzz(NotNull(), _))
3187 define `NotNull()` as an example:
3192 using ::testing::NotNull;
3201 // In this example, we want to use NotNull() with any pointer, so
3220 inline PolymorphicMatcher<NotNullMatcher> NotNull() {
3225 EXPECT_CALL(foo, Bar(NotNull())); // The argument must be a non-NULL pointer.