Home
last modified time | relevance | path

Searched refs:operator_functions (Results 1 – 2 of 2) sorted by relevance

/external/cmockery/cmockery_0_1_2/src/example/
Dcalculator_test.c47 const OperatorFunction * const operator_functions,
52 const OperatorFunction * const operator_functions,
132 const OperatorFunction operator_functions[] = { in test_find_operator_function_by_string_null_string() local
136 array_length(operator_functions), operator_functions, NULL)); in test_find_operator_function_by_string_null_string()
149 const OperatorFunction operator_functions[] = { in test_find_operator_function_by_string_not_found() local
155 array_length(operator_functions), operator_functions, "test"), in test_find_operator_function_by_string_not_found()
162 const OperatorFunction operator_functions[] = { in test_find_operator_function_by_string_found() local
168 array_length(operator_functions), operator_functions, "-"), in test_find_operator_function_by_string_found()
174 const OperatorFunction operator_functions[] = { in test_perform_operation_null_args() local
181 1, NULL, array_length(operator_functions), operator_functions, in test_perform_operation_null_args()
[all …]
Dcalculator.c125 const OperatorFunction * const operator_functions, in find_operator_function_by_string() argument
128 assert(!number_of_operator_functions || operator_functions); in find_operator_function_by_string()
133 &operator_functions[i]; in find_operator_function_by_string()
158 const OperatorFunction * const operator_functions, in perform_operation() argument
165 assert(!number_of_operator_functions || operator_functions); in perform_operation()
195 number_of_operator_functions, operator_functions, operator_string); in perform_operation()