Lines Matching refs:nodep

463 	xmlNodePtr nodep = NULL;  in php_dom_export_node()  local
467 nodep = intern->node->node; in php_dom_export_node()
470 return nodep; in php_dom_export_node()
479 xmlNodePtr nodep = NULL; in PHP_FUNCTION() local
488 nodep = php_libxml_import_node(node); in PHP_FUNCTION()
490 if (nodep && nodeobj && (nodep->type == XML_ELEMENT_NODE || nodep->type == XML_ATTRIBUTE_NODE)) { in PHP_FUNCTION()
491 DOM_RET_OBJ((xmlNodePtr) nodep, &ret, (dom_object *)nodeobj); in PHP_FUNCTION()
1301 xmlNodePtr nodep; in dom_hierarchy() local
1307 nodep = parent; in dom_hierarchy()
1309 while (nodep) { in dom_hierarchy()
1310 if (nodep == child) { in dom_hierarchy()
1313 nodep = nodep->parent; in dom_hierarchy()
1334 xmlNode *dom_get_elements_by_tag_name_ns_raw(xmlNodePtr nodep, char *ns, char *local, int *cur, int… in dom_get_elements_by_tag_name_ns_raw() argument
1338 while (nodep != NULL && (*cur <= index || index == -1)) { in dom_get_elements_by_tag_name_ns_raw()
1339 if (nodep->type == XML_ELEMENT_NODE) { in dom_get_elements_by_tag_name_ns_raw()
1340 … if (xmlStrEqual(nodep->name, (xmlChar *)local) || xmlStrEqual((xmlChar *)"*", (xmlChar *)local)) { in dom_get_elements_by_tag_name_ns_raw()
1341 …if (ns == NULL || (!strcmp(ns, "") && nodep->ns == NULL) || (nodep->ns != NULL && (xmlStrEqual(nod… in dom_get_elements_by_tag_name_ns_raw()
1343 ret = nodep; in dom_get_elements_by_tag_name_ns_raw()
1349 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index); in dom_get_elements_by_tag_name_ns_raw()
1354 nodep = nodep->next; in dom_get_elements_by_tag_name_ns_raw()
1361 static inline zend_bool is_empty_node(xmlNodePtr nodep) in is_empty_node() argument
1363 xmlChar *strContent = xmlNodeGetContent(nodep); in is_empty_node()
1370 void dom_normalize (xmlNodePtr nodep) in dom_normalize() argument
1376 child = nodep->children; in dom_normalize()
1496 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { in dom_get_ns() argument
1504 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix); in dom_get_ns()