Lines Matching refs:call_count
75 // Returns true if and only if call_count calls will satisfy this
77 virtual bool IsSatisfiedByCallCount(int call_count) const = 0;
79 // Returns true if and only if call_count calls will saturate this
81 virtual bool IsSaturatedByCallCount(int call_count) const = 0;
105 // Returns true if and only if call_count calls will satisfy this
107 bool IsSatisfiedByCallCount(int call_count) const {
108 return impl_->IsSatisfiedByCallCount(call_count);
111 // Returns true if and only if call_count calls will saturate this
113 bool IsSaturatedByCallCount(int call_count) const {
114 return impl_->IsSaturatedByCallCount(call_count);
117 // Returns true if and only if call_count calls will over-saturate this
119 bool IsOverSaturatedByCallCount(int call_count) const {
120 return impl_->IsSaturatedByCallCount(call_count) &&
121 !impl_->IsSatisfiedByCallCount(call_count);