Lines Matching refs:pointer

1002 // Tests that IsNull() matches any NULL pointer of any type.
1065 // Tests that NotNull() matches any non-NULL pointer of any type.
2734 // matcher_maker is a pointer to a function which creates a FloatingEqMatcher.
2822 // matcher_maker is a pointer to a function which creates a FloatingEqMatcher.
3194 // Right type. A pointer is passed down.
3284 // Minimal const-propagating pointer.
3386 const char* p; // A pointer field.
3430 // Tests that Field(&Foo::field, ...) works when field is a pointer.
3439 // Matching a pointer that is not NULL.
3505 // Tests that Field() works when the argument is a pointer to const.
3515 // Tests that Field() works when the argument is a pointer to non-const.
3525 // Tests that Field() works when the argument is a reference to a const pointer.
3535 // Tests that Field() does not match the NULL pointer.
3554 // Tests that Field() can describe itself when used to match a pointer.
3562 // Tests that Field() can explain the result of matching a pointer.
3714 // Tests that Property() works when the argument is a pointer to const.
3726 // Tests that Property() works when the argument is a pointer to non-const.
3739 // const pointer.
3751 // Tests that Property() does not match the NULL pointer.
3772 // Tests that Property() can describe itself when used to match a pointer.
3781 // Tests that Property() can explain the result of matching a pointer.
3801 // function pointer.
3893 // a NULL function pointer.
3897 "NULL function pointer is passed into ResultOf\\(\\)\\.");
5404 const int* const pointer = a;
5405 EXPECT_THAT(make_tuple(pointer, 2), Each(Gt(0)));
5406 EXPECT_THAT(make_tuple(pointer, 2), Not(Each(Gt(1))));