Lines Matching refs:Pointee
1060 Well, you can use the `Pointee(m)` matcher.
1062 `Pointee(m)` matches a pointer iff `m` matches the value the pointer
1067 using ::testing::Pointee;
1069 EXPECT_CALL(foo, Bar(Pointee(Ge(3))));
1075 One nice thing about `Pointee()` is that it treats a `NULL` pointer as
1076 a match failure, so you can write `Pointee(m)` instead of
1079 AllOf(NotNull(), Pointee(m))
1084 Also, did we tell you that `Pointee()` works with both raw pointers
1089 nested `Pointee()` to probe deeper inside the value. For example,
1090 `Pointee(Pointee(Lt(3)))` matches a pointer that points to a pointer
1222 …* If the container is passed by pointer instead of by reference, just write `Pointee(ElementsAre*(…