Lines Matching refs:Times
81 .Times(cardinality) // Can be used at most once
121 #### Times {#EXPECT_CALL.Times}
123 `.Times(`*`cardinality`*`)`
138 If the `Times` clause is omitted, GoogleTest infers the cardinality as follows:
142 cardinality is `Times(1)`.
144 *n* >= 1, the inferred cardinality is `Times(n)`.
146 *n* >= 0, the inferred cardinality is `Times(AtLeast(n))`.
148 The `Times` clause can be used at most once on an expectation.
234 `Times` is not specified. See [`Times`](#EXPECT_CALL.Times).
268 when `Times` is not specified. See [`Times`](#EXPECT_CALL.Times).
304 .Times(AnyNumber());
306 .Times(2)