Lines Matching defs:list
8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
26 #include "atf-c/detail/list.h"
274 atf_list_index(atf_list_t *list, const size_t idx)
278 PRE(idx < atf_list_size(list));
280 iter = atf_list_begin(list);
284 !atf_equal_list_iter_list_iter((iter), atf_list_end(list))) {
293 atf_list_index_c(const atf_list_t *list, const size_t idx)
297 PRE(idx < atf_list_size(list));
299 iter = atf_list_begin_c(list);
304 atf_list_end_c(list))) {