Home | History | Annotate | Download | only in example

Lines Matching defs:NULL

123 /* Ensure find_operator_function_by_string() asserts when a NULL pointer is 
126 expect_assert_failure(find_operator_function_by_string(1, NULL, "test"));
129 /* Ensure find_operator_function_by_string() asserts when a NULL pointer is
136 array_length(operator_functions), operator_functions, NULL));
139 /* Ensure find_operator_function_by_string() returns NULL when a NULL pointer
142 assert_int_equal((int)find_operator_function_by_string(0, NULL, "test"),
143 (int)NULL);
146 /* Ensure find_operator_function_by_string() returns NULL when searching for
156 (int)NULL);
172 // Ensure perform_operation() asserts when a NULL arguments array is specified.
181 1, NULL, array_length(operator_functions), operator_functions,
186 /* Ensure perform_operation() asserts when a NULL operator_functions array is
196 array_length(args), args, 1, NULL, &number_of_intermediate_values,
200 /* Ensure perform_operation() asserts when a NULL pointer is specified for
212 array_length(args), args, 1, operator_functions, NULL,
216 /* Ensure perform_operation() asserts when a NULL pointer is specified for
229 operator_functions, &number_of_intermediate_values, NULL,
239 0, NULL, 0, NULL, &number_of_intermediate_values, &intermediate_values,