Lines Matching refs:nodep

553 	xmlNodePtr nodep = NULL;  in php_dom_export_node()  local
557 nodep = intern->node->node; in php_dom_export_node()
560 return nodep; in php_dom_export_node()
569 xmlNodePtr nodep = NULL; in PHP_FUNCTION() local
578 nodep = php_libxml_import_node(node TSRMLS_CC); in PHP_FUNCTION()
580 if (nodep && nodeobj && (nodep->type == XML_ELEMENT_NODE || nodep->type == XML_ATTRIBUTE_NODE)) { in PHP_FUNCTION()
581 DOM_RET_OBJ((xmlNodePtr) nodep, &ret, (dom_object *)nodeobj); in PHP_FUNCTION()
1447 xmlNodePtr nodep; in dom_hierarchy() local
1453 nodep = parent; in dom_hierarchy()
1455 while (nodep) { in dom_hierarchy()
1456 if (nodep == child) { in dom_hierarchy()
1459 nodep = nodep->parent; in dom_hierarchy()
1480 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
1484 while (nodep != NULL && (*cur <= index || index == -1)) { in dom_get_elements_by_tag_name_ns_raw()
1485 if (nodep->type == XML_ELEMENT_NODE) { in dom_get_elements_by_tag_name_ns_raw()
1486 … if (xmlStrEqual(nodep->name, (xmlChar *)local) || xmlStrEqual((xmlChar *)"*", (xmlChar *)local)) { in dom_get_elements_by_tag_name_ns_raw()
1487 …if (ns == NULL || (nodep->ns != NULL && (xmlStrEqual(nodep->ns->href, (xmlChar *)ns) || xmlStrEqua… in dom_get_elements_by_tag_name_ns_raw()
1489 ret = nodep; in dom_get_elements_by_tag_name_ns_raw()
1495 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index); in dom_get_elements_by_tag_name_ns_raw()
1500 nodep = nodep->next; in dom_get_elements_by_tag_name_ns_raw()
1508 void dom_normalize (xmlNodePtr nodep TSRMLS_DC) in dom_normalize()
1514 child = nodep->children; in dom_normalize()
1627 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { in dom_get_ns() argument
1635 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix); in dom_get_ns()