Lines Matching full:calls

70 apply only to calls of *`method_name`* whose arguments match all of the
95 Restricts the expectation to apply only to mock function calls whose arguments
127 The parameter *`cardinality`* represents the number of expected calls and can be
157 Expected calls assigned to the same sequence are expected to occur in the order
185 other calls.
211 // Collect all expectations of InitElement() calls
216 .After(all_inits); // Expect Describe() call after all InitElement() calls
239 the first, second, and third calls:
259 matching function calls. Takes effect after the actions specified in the
270 If any `WillOnce` clauses have been specified, matching function calls will
278 .WillRepeatedly(Return("John Doe")); // Return "John Doe" on all calls
282 .WillRepeatedly(Return(7)); // Return 7 on all subsequent calls
292 number of matching function calls has been reached.
296 function calls) after it has been *saturated* (the upper bound has been
310 In the above example, the first two calls to `my_mock.SetNumber(7)` match
311 expectation 2, which then becomes inactive and no longer matches any calls. A
314 would match expectation 2 again, producing a failure since the limit of 2 calls
332 specification will apply only to calls of *`method_name`* whose arguments match
352 Restricts the specification to only mock function calls whose arguments as a
419 returned from function calls that do not specify an action.
441 [uninteresting calls](../gmock_cook_book.md#uninteresting-vs-unexpected). The
472 [uninteresting calls](../gmock_cook_book.md#uninteresting-vs-unexpected). The
499 [uninteresting calls](../gmock_cook_book.md#uninteresting-vs-unexpected). The