Searched refs:action_count (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/googletest/googlemock/src/
H A Dgmock-spec-builders.cc192 const int action_count = static_cast<int>(untyped_actions_.size()); local
197 if (action_count > upper_bound ||
198 (action_count == upper_bound && repeated_action_specified_)) {
200 } else if (0 < action_count && action_count < lower_bound &&
214 << action_count << " WillOnce()"
215 << (action_count == 1 ? "" : "s");
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h1161 const int action_count = static_cast<int>(untyped_actions_.size());
1162 if (action_count > 0 && !repeated_action_specified_ &&
1163 count > action_count) {
1170 << action_count << " WillOnce()"
1171 << (action_count == 1 ? " is" : "s are") << " specified - ";
1176 return count <= action_count ?

Completed in 11 milliseconds