Lines Matching refs:call

113 // call a mock function (either Foo() or a different one) at the same
146 // the action's result. The call description string will be used in
147 // the error message to describe the call in the case the default
161 // Writes a message that the call is uninteresting (i.e. neither
173 // is_excessive is modified to indicate whether the call exceeds the
425 // its entry in the call-reaction table should be removed.
499 // Expectation objects, and needs to call the non-const Retire()
709 // Describes how many times a function call matching this
1144 // is called only when the mock function call does NOT match the
1146 *os << "The call matches the expectation.\n";
1181 // Given the arguments of a mock function call, if the call will
1196 // We have an excessive call.
1216 *what << "Mock function call matches " << source_text() <<"...\n";
1260 const char* file, int line, const char* obj, const char* call) {
1262 string("ON_CALL(") + obj + ", " + call + ") invoked");
1269 const char* file, int line, const char* obj, const char* call) {
1270 const string source_text(string("EXPECT_CALL(") + obj + ", " + call + ")");
1493 // exceptions are enabled) with a helpful call descrption if there
1519 // the action's result. The call description string will be used in
1520 // the error message to describe the call in the case the default
1648 // Writes a message that the call is uninteresting (i.e. neither
1657 *os << "Uninteresting mock function call - ";
1659 *os << " Function call: " << Name();
1667 // is_excessive is modified to indicate whether the call exceeds the
1672 // transaction. Otherwise another thread may call this mock
1694 // which will increment the call count for *exp and thus affect
1737 *os << "\nUnexpected mock function call - ";
1743 // current mock function call.
1797 // Reports an uninteresting call (whose description is in msg) in the
1821 // // Expects a call to non-const MockFoo::Bar().
1823 // // Expects a call to const MockFoo::Bar().
1835 // of the method used in call is a result of macro expansion.
1838 #define GMOCK_ON_CALL_IMPL_(obj, call) \
1839 ((obj).gmock_##call).InternalDefaultActionSetAt(__FILE__, __LINE__, \
1840 #obj, #call)
1841 #define ON_CALL(obj, call) GMOCK_ON_CALL_IMPL_(obj, call)
1843 #define GMOCK_EXPECT_CALL_IMPL_(obj, call) \
1844 ((obj).gmock_##call).InternalExpectedAt(__FILE__, __LINE__, #obj, #call)
1845 #define EXPECT_CALL(obj, call) GMOCK_EXPECT_CALL_IMPL_(obj, call)