Lines Matching refs:list

29     void **list = tree->active_formatting->list;  in lxb_html_tree_active_formatting_up_to_last_marker()  local
34 if (list[tree->active_formatting->length] in lxb_html_tree_active_formatting_up_to_last_marker()
47 void **list = tree->active_formatting->list; in lxb_html_tree_active_formatting_remove_by_node() local
53 if (list[idx] == node) { in lxb_html_tree_active_formatting_remove_by_node()
56 memmove(list + idx, list + idx + 1, sizeof(void *) * delta); in lxb_html_tree_active_formatting_remove_by_node()
70 void **list = tree->active_formatting->list; in lxb_html_tree_active_formatting_find_by_node() local
73 if (list[i] == node) { in lxb_html_tree_active_formatting_find_by_node()
94 void **list = tree->active_formatting->list; in lxb_html_tree_active_formatting_find_by_node_reverse() local
100 if (list[len] == node) { in lxb_html_tree_active_formatting_find_by_node_reverse()
125 void **list = af->list; in lxb_html_tree_active_formatting_reconstruct_elements() local
130 if(list[af_idx] == &lxb_html_tree_active_formatting_marker_static in lxb_html_tree_active_formatting_reconstruct_elements()
131 || lxb_html_tree_open_elements_find_by_node_reverse(tree, list[af_idx], in lxb_html_tree_active_formatting_reconstruct_elements()
144 if(list[af_idx] == &lxb_html_tree_active_formatting_marker_static || in lxb_html_tree_active_formatting_reconstruct_elements()
145 lxb_html_tree_open_elements_find_by_node_reverse(tree, list[af_idx], in lxb_html_tree_active_formatting_reconstruct_elements()
164 node = list[af_idx]; in lxb_html_tree_active_formatting_reconstruct_elements()
175 list[af_idx] = lxb_dom_interface_node(element); in lxb_html_tree_active_formatting_reconstruct_elements()
189 lxb_dom_node_t **list = (lxb_dom_node_t **) tree->active_formatting->list; in lxb_html_tree_active_formatting_between_last_marker() local
195 if (list[idx] == lxb_html_tree_active_formatting_marker_node_static) { in lxb_html_tree_active_formatting_between_last_marker()
199 if (list[idx]->local_name == tag_idx && list[idx]->ns == LXB_NS_HTML) { in lxb_html_tree_active_formatting_between_last_marker()
204 return list[idx]; in lxb_html_tree_active_formatting_between_last_marker()
215 lxb_dom_node_t **list = (lxb_dom_node_t **) tree->active_formatting->list; in lxb_html_tree_active_formatting_push_with_check_dupl() local
223 if (list[idx] == lxb_html_tree_active_formatting_marker_node_static) { in lxb_html_tree_active_formatting_push_with_check_dupl()
227 if(list[idx]->local_name == node->local_name && list[idx]->ns == node->ns in lxb_html_tree_active_formatting_push_with_check_dupl()
228 && lxb_dom_element_compare(lxb_dom_interface_element(list[idx]), in lxb_html_tree_active_formatting_push_with_check_dupl()