Lines Matching refs:list
11 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
36 #include "list.h"
278 atf_list_index(atf_list_t *list, const size_t idx)
282 PRE(idx < atf_list_size(list));
284 iter = atf_list_begin(list);
288 !atf_equal_list_iter_list_iter((iter), atf_list_end(list))) {
297 atf_list_index_c(const atf_list_t *list, const size_t idx)
301 PRE(idx < atf_list_size(list));
303 iter = atf_list_begin_c(list);
308 atf_list_end_c(list))) {