Lines Matching refs:nodep

466 	xmlNodePtr nodep = NULL;  in php_dom_export_node()  local
470 nodep = intern->node->node; in php_dom_export_node()
473 return nodep; in php_dom_export_node()
482 xmlNodePtr nodep = NULL; in PHP_FUNCTION() local
491 nodep = php_libxml_import_node(node); in PHP_FUNCTION()
493 if (nodep && nodeobj && (nodep->type == XML_ELEMENT_NODE || nodep->type == XML_ATTRIBUTE_NODE)) { in PHP_FUNCTION()
494 DOM_RET_OBJ((xmlNodePtr) nodep, &ret, (dom_object *)nodeobj); in PHP_FUNCTION()
1308 xmlNodePtr nodep; in dom_hierarchy() local
1314 nodep = parent; in dom_hierarchy()
1316 while (nodep) { in dom_hierarchy()
1317 if (nodep == child) { in dom_hierarchy()
1320 nodep = nodep->parent; in dom_hierarchy()
1341 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
1345 while (nodep != NULL && (*cur <= index || index == -1)) { in dom_get_elements_by_tag_name_ns_raw()
1346 if (nodep->type == XML_ELEMENT_NODE) { in dom_get_elements_by_tag_name_ns_raw()
1347 … if (xmlStrEqual(nodep->name, (xmlChar *)local) || xmlStrEqual((xmlChar *)"*", (xmlChar *)local)) { in dom_get_elements_by_tag_name_ns_raw()
1348 …if (ns == NULL || (!strcmp(ns, "") && nodep->ns == NULL) || (nodep->ns != NULL && (xmlStrEqual(nod… in dom_get_elements_by_tag_name_ns_raw()
1350 ret = nodep; in dom_get_elements_by_tag_name_ns_raw()
1356 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index); in dom_get_elements_by_tag_name_ns_raw()
1361 nodep = nodep->next; in dom_get_elements_by_tag_name_ns_raw()
1369 void dom_normalize (xmlNodePtr nodep) in dom_normalize() argument
1375 child = nodep->children; in dom_normalize()
1488 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { in dom_get_ns() argument
1496 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix); in dom_get_ns()