Home | History | Annotate | Download | only in gmock

Lines Matching refs:cardinality

50 //       .Times(cardinality)
693 // Returns the cardinality specified in the expectation spec.
694 const Cardinality& cardinality() const { return cardinality_; }
742 // Explicitly specifies the cardinality of this expectation. Used
744 void SpecifyCardinality(const Cardinality& cardinality);
746 // Returns true iff the user specified the cardinality explicitly
750 // Sets the cardinality of this expectation spec.
751 void set_cardinality(const Cardinality& a_cardinality) {
781 return cardinality().IsSatisfiedByCallCount(call_count_);
788 return cardinality().IsSaturatedByCallCount(call_count_);
795 return cardinality().IsOverSaturatedByCallCount(call_count_);
821 // WillRepeatedly() clauses) against the cardinality if this hasn't
834 void UntypedTimes(const Cardinality& a_cardinality);
841 // True iff the cardinality is specified explicitly.
843 Cardinality cardinality_; // The cardinality of the expectation.
917 TypedExpectation& Times(const Cardinality& a_cardinality) {