Lines Matching refs:count

307  * @param[in]  count The parameter returns the number of times the value should
308 * be returned by mock(). If count is set to -1 the value will
313 void will_return_count(#function, LargestIntegralType value, int count);
315 #define will_return_count(function, value, count) \
317 cast_to_largest_integral_type(value), count)
452 * @param[in] count The count parameter returns the number of times the value
453 * should be returned by check_expected(). If count is set
458 void expect_in_set_count(#function, #parameter, LargestIntegralType value_array[], size_t count);
460 #define expect_in_set_count(function, parameter, value_array, count) \
462 sizeof(value_array) / sizeof((value_array)[0]), count)
499 * @param[in] count The count parameter returns the number of times the value
500 * should be returned by check_expected(). If count is set
505 void expect_not_in_set_count(#function, #parameter, LargestIntegralType value_array[], size_t count);
507 #define expect_not_in_set_count(function, parameter, value_array, count) \
510 sizeof(value_array) / sizeof((value_array)[0]), count)
552 * @param[in] count The count parameter returns the number of times the value
553 * should be returned by check_expected(). If count is set
558 void expect_in_range_count(#function, #parameter, LargestIntegralType minimum, LargestIntegralType maximum, size_t count);
560 #define expect_in_range_count(function, parameter, minimum, maximum, count) \
562 maximum, count)
603 * @param[in] count The count parameter returns the number of times the value
604 * should be returned by check_expected(). If count is set
609 void expect_not_in_range_count(#function, #parameter, LargestIntegralType minimum, LargestIntegralType maximum, size_t count);
612 count) \
614 minimum, maximum, count)
649 * @param[in] count The count parameter returns the number of times the value
650 * should be returned by check_expected(). If count is set
655 void expect_value_count(#function, #parameter, LargestIntegralType value, size_t count);
657 #define expect_value_count(function, parameter, value, count) \
659 cast_to_largest_integral_type(value), count)
694 * @param[in] count The count parameter returns the number of times the value
695 * should be returned by check_expected(). If count is set
700 void expect_not_value_count(#function, #parameter, LargestIntegralType value, size_t count);
702 #define expect_not_value_count(function, parameter, value, count) \
704 cast_to_largest_integral_type(value), count)
741 * @param[in] count The count parameter returns the number of times the value
742 * should be returned by check_expected(). If count is set
747 void expect_string_count(#function, #parameter, const char *string, size_t count);
749 #define expect_string_count(function, parameter, string, count) \
751 (const char*)(string), count)
788 * @param[in] count The count parameter returns the number of times the value
789 * should be returned by check_expected(). If count is set
794 void expect_not_string_count(#function, #parameter, const char *string, size_t count);
796 #define expect_not_string_count(function, parameter, string, count) \
798 (const char*)(string), count)
838 * @param[in] count The count parameter returns the number of times the value
839 * should be returned by check_expected(). If count is set
844 void expect_memory_count(#function, #parameter, void *memory, size_t size, size_t count);
846 #define expect_memory_count(function, parameter, memory, size, count) \
848 (const void*)(memory), size, count)
889 * @param[in] count The count parameter returns the number of times the value
890 * should be returned by check_expected(). If count is set
895 void expect_not_memory_count(#function, #parameter, void *memory, size_t size, size_t count);
897 #define expect_not_memory_count(function, parameter, memory, size, count) \
899 (const void*)(memory), size, count)
932 * @param[in] count The count parameter returns the number of times the value
933 * should be returned by check_expected(). If count is set
938 void expect_any_count(#function, #parameter, size_t count);
940 #define expect_any_count(function, parameter, count) \
941 _expect_any(#function, #parameter, __FILE__, __LINE__, count)
1309 * @param[in] count The size of the values array.
1311 void assert_in_set(LargestIntegralType value, LargestIntegralType values[], size_t count);
1328 * @param[in] count The size of the values array.
1330 void assert_not_in_set(LargestIntegralType value, LargestIntegralType values[], size_t count);
1927 const int count);
1932 const size_t number_of_values, const int count);
1936 const size_t number_of_values, const int count);
1942 const LargestIntegralType maximum, const int count);
1947 const LargestIntegralType maximum, const int count);
1952 const int count);
1956 const int count);
1961 const int count);
1965 const int count);
1970 const size_t size, const int count);
1974 const size_t size, const int count);
1978 const char* const file, const int line, const int count);
1986 const int count);