Lines Matching refs:place
103 int *place = dynarray_int_emplace (&dyn); in test_int_fail() local
104 if (place == NULL) in test_int_fail()
107 *place = 0; in test_int_fail()
139 int *place = dynarray_int_emplace (&dyn); in test_int_fail() local
140 TEST_VERIFY_EXIT (place != NULL); in test_int_fail()
141 *place = i; in test_int_fail()
196 char **place; in test_str_fail() local
203 place = dynarray_str_at (&dyn, dynarray_str_size (&dyn) - 1); in test_str_fail()
207 place = dynarray_str_emplace (&dyn); in test_str_fail()
208 if (place == NULL) in test_str_fail()
212 TEST_VERIFY_EXIT (*place == NULL); in test_str_fail()
213 *place = strdup ("placeholder"); in test_str_fail()
214 if (*place == NULL) in test_str_fail()
228 char **place = dynarray_str_emplace (&dyn); in test_str_fail() local
229 if (place == NULL) in test_str_fail()
232 *place = NULL; in test_str_fail()
268 char **place = dynarray_str_emplace (&dyn); in test_str_fail() local
269 TEST_VERIFY_EXIT (place != NULL); in test_str_fail()
270 TEST_VERIFY_EXIT (*place == NULL); in test_str_fail()
271 *place = xstrdup ("placeholder"); in test_str_fail()