Lines Matching refs:node

28     lxb_dom_node_t *node;  in lxb_html_interface_create()  local
35 node = lxb_dom_interface_node(unel); in lxb_html_interface_create()
42 node = lxb_dom_interface_node(domel); in lxb_html_interface_create()
48 node = lxb_dom_interface_node(domel); in lxb_html_interface_create()
52 node = lxb_html_interface_res_constructors[tag_id][ns](document); in lxb_html_interface_create()
55 if (node == NULL) { in lxb_html_interface_create()
59 node->local_name = tag_id; in lxb_html_interface_create()
60 node->ns = ns; in lxb_html_interface_create()
62 return node; in lxb_html_interface_create()
69 const lxb_dom_node_t *node = intrfc; in lxb_html_interface_clone() local
72 document = node->owner_document; in lxb_html_interface_clone()
75 switch (node->type) { in lxb_html_interface_clone()
95 return lxb_dom_node_interface_clone(document, node, false); in lxb_html_interface_clone()
104 const lxb_dom_node_t *node = lxb_dom_interface_node(element); in lxb_html_interface_clone_element() local
107 node->local_name, node->ns); in lxb_html_interface_clone_element()
126 lxb_dom_node_t *node = intrfc; in lxb_html_interface_destroy() local
128 switch (node->type) { in lxb_html_interface_destroy()
134 if (node->local_name >= LXB_TAG__LAST_ENTRY) { in lxb_html_interface_destroy()
135 if (node->ns == LXB_NS_HTML) { in lxb_html_interface_destroy()
138 else if (node->ns == LXB_NS_SVG) { in lxb_html_interface_destroy()
147 return lxb_html_interface_res_destructor[node->local_name][node->ns](intrfc); in lxb_html_interface_destroy()