Home | History | Annotate | Download | only in test

Lines Matching defs:incomplete

107 class Incomplete;
112 // argument of an incomplete type.
113 MOCK_METHOD1(ByRefFunc, void(const Incomplete& x));
116 // Tells Google Mock how to print a value of type Incomplete.
117 void PrintTo(const Incomplete& x, ::std::ostream* os);
121 // by-reference an argument whose type is incomplete, we can still
124 MockIncomplete incomplete;
125 EXPECT_CALL(incomplete, ByRefFunc(_))
131 void PrintTo(const Incomplete& /* x */, ::std::ostream* os) {
132 *os << "incomplete";