Lines Matching refs:nodep

465 	xmlNodePtr nodep = NULL;  in php_dom_export_node()  local
469 nodep = intern->node->node; in php_dom_export_node()
472 return nodep; in php_dom_export_node()
481 xmlNodePtr nodep = NULL; in PHP_FUNCTION() local
490 nodep = php_libxml_import_node(node); in PHP_FUNCTION()
492 if (nodep && nodeobj && (nodep->type == XML_ELEMENT_NODE || nodep->type == XML_ATTRIBUTE_NODE)) { in PHP_FUNCTION()
493 DOM_RET_OBJ((xmlNodePtr) nodep, &ret, (dom_object *)nodeobj); in PHP_FUNCTION()
1303 xmlNodePtr nodep; in dom_hierarchy() local
1313 nodep = parent; in dom_hierarchy()
1315 while (nodep) { in dom_hierarchy()
1316 if (nodep == child) { in dom_hierarchy()
1319 nodep = nodep->parent; in dom_hierarchy()
1340 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
1344 while (nodep != NULL && (*cur <= index || index == -1)) { in dom_get_elements_by_tag_name_ns_raw()
1345 if (nodep->type == XML_ELEMENT_NODE) { in dom_get_elements_by_tag_name_ns_raw()
1346 … if (xmlStrEqual(nodep->name, (xmlChar *)local) || xmlStrEqual((xmlChar *)"*", (xmlChar *)local)) { in dom_get_elements_by_tag_name_ns_raw()
1347 …if (ns == NULL || (!strcmp(ns, "") && nodep->ns == NULL) || (nodep->ns != NULL && (xmlStrEqual(nod… in dom_get_elements_by_tag_name_ns_raw()
1349 ret = nodep; in dom_get_elements_by_tag_name_ns_raw()
1355 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index); in dom_get_elements_by_tag_name_ns_raw()
1360 nodep = nodep->next; in dom_get_elements_by_tag_name_ns_raw()
1367 static inline zend_bool is_empty_node(xmlNodePtr nodep) in is_empty_node() argument
1369 xmlChar *strContent = xmlNodeGetContent(nodep); in is_empty_node()
1376 void dom_normalize (xmlNodePtr nodep) in dom_normalize() argument
1382 child = nodep->children; in dom_normalize()
1502 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { in dom_get_ns() argument
1510 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix); in dom_get_ns()