Home
last modified time | relevance | path

Searched refs:action_count (Results 1 – 10 of 10) sorted by relevance

/external/googletest/googlemock/src/
Dgmock-spec-builders.cc191 const int action_count = static_cast<int>(untyped_actions_.size()); in CheckActionCountIfNotDone() local
196 if (action_count > upper_bound || in CheckActionCountIfNotDone()
197 (action_count == upper_bound && repeated_action_specified_)) { in CheckActionCountIfNotDone()
199 } else if (0 < action_count && action_count < lower_bound && in CheckActionCountIfNotDone()
213 << action_count << " WillOnce()" in CheckActionCountIfNotDone()
214 << (action_count == 1 ? "" : "s"); in CheckActionCountIfNotDone()
/external/v8/testing/gmock/src/
Dgmock-spec-builders.cc192 const int action_count = static_cast<int>(untyped_actions_.size()); in CheckActionCountIfNotDone() local
197 if (action_count > upper_bound || in CheckActionCountIfNotDone()
198 (action_count == upper_bound && repeated_action_specified_)) { in CheckActionCountIfNotDone()
200 } else if (0 < action_count && action_count < lower_bound && in CheckActionCountIfNotDone()
214 << action_count << " WillOnce()" in CheckActionCountIfNotDone()
215 << (action_count == 1 ? "" : "s"); in CheckActionCountIfNotDone()
/external/google-breakpad/src/testing/src/
Dgmock-spec-builders.cc192 const int action_count = static_cast<int>(untyped_actions_.size()); in CheckActionCountIfNotDone() local
197 if (action_count > upper_bound || in CheckActionCountIfNotDone()
198 (action_count == upper_bound && repeated_action_specified_)) { in CheckActionCountIfNotDone()
200 } else if (0 < action_count && action_count < lower_bound && in CheckActionCountIfNotDone()
214 << action_count << " WillOnce()" in CheckActionCountIfNotDone()
215 << (action_count == 1 ? "" : "s"); in CheckActionCountIfNotDone()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-spec-builders.h1153 const int action_count = static_cast<int>(untyped_actions_.size()); in GetCurrentAction() local
1154 if (action_count > 0 && !repeated_action_specified_ && in GetCurrentAction()
1155 count > action_count) { in GetCurrentAction()
1162 << action_count << " WillOnce()" in GetCurrentAction()
1163 << (action_count == 1 ? " is" : "s are") << " specified - "; in GetCurrentAction()
1168 return count <= action_count ? in GetCurrentAction()
/external/googletest/googlemock/include/gmock/
Dgmock-spec-builders.h1164 const int action_count = static_cast<int>(untyped_actions_.size()); in GetCurrentAction() local
1165 if (action_count > 0 && !repeated_action_specified_ && in GetCurrentAction()
1166 count > action_count) { in GetCurrentAction()
1173 << action_count << " WillOnce()" in GetCurrentAction()
1174 << (action_count == 1 ? " is" : "s are") << " specified - "; in GetCurrentAction()
1179 return count <= action_count ? in GetCurrentAction()
/external/v8/testing/gmock/include/gmock/
Dgmock-spec-builders.h1161 const int action_count = static_cast<int>(untyped_actions_.size()); in GetCurrentAction() local
1162 if (action_count > 0 && !repeated_action_specified_ && in GetCurrentAction()
1163 count > action_count) { in GetCurrentAction()
1170 << action_count << " WillOnce()" in GetCurrentAction()
1171 << (action_count == 1 ? " is" : "s are") << " specified - "; in GetCurrentAction()
1176 return count <= action_count ? in GetCurrentAction()
/external/e2fsprogs/ext2ed/
Ddir_com.c160 return (search_dir_entries (&action_count,&status).dir_entry_num); in count_dir_entries()
163 int action_count (struct struct_file_info *info) in action_count() function
Dext2ed.h375 int action_count (struct struct_file_info *info);
/external/fmtlib/test/
Dgmock-gtest-all.cc10642 const int action_count = static_cast<int>(untyped_actions_.size()); in CheckActionCountIfNotDone() local
10647 if (action_count > upper_bound || in CheckActionCountIfNotDone()
10648 (action_count == upper_bound && repeated_action_specified_)) { in CheckActionCountIfNotDone()
10650 } else if (0 < action_count && action_count < lower_bound && in CheckActionCountIfNotDone()
10664 << action_count << " WillOnce()" in CheckActionCountIfNotDone()
10665 << (action_count == 1 ? "" : "s"); in CheckActionCountIfNotDone()
/external/fmtlib/test/gmock/
Dgmock.h9725 const int action_count = static_cast<int>(untyped_actions_.size());
9726 if (action_count > 0 && !repeated_action_specified_ &&
9727 count > action_count) {
9734 << action_count << " WillOnce()"
9735 << (action_count == 1 ? " is" : "s are") << " specified - ";
9740 return count <= action_count ?