Lines Matching refs:nodep

554 	xmlNodePtr nodep = NULL;  in php_dom_export_node()  local
558 nodep = intern->node->node; in php_dom_export_node()
561 return nodep; in php_dom_export_node()
570 xmlNodePtr nodep = NULL; in PHP_FUNCTION() local
579 nodep = php_libxml_import_node(node TSRMLS_CC); in PHP_FUNCTION()
581 if (nodep && nodeobj && (nodep->type == XML_ELEMENT_NODE || nodep->type == XML_ATTRIBUTE_NODE)) { in PHP_FUNCTION()
582 DOM_RET_OBJ((xmlNodePtr) nodep, &ret, (dom_object *)nodeobj); in PHP_FUNCTION()
1452 xmlNodePtr nodep; in dom_hierarchy() local
1458 nodep = parent; in dom_hierarchy()
1460 while (nodep) { in dom_hierarchy()
1461 if (nodep == child) { in dom_hierarchy()
1464 nodep = nodep->parent; in dom_hierarchy()
1485 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
1489 while (nodep != NULL && (*cur <= index || index == -1)) { in dom_get_elements_by_tag_name_ns_raw()
1490 if (nodep->type == XML_ELEMENT_NODE) { in dom_get_elements_by_tag_name_ns_raw()
1491 … if (xmlStrEqual(nodep->name, (xmlChar *)local) || xmlStrEqual((xmlChar *)"*", (xmlChar *)local)) { in dom_get_elements_by_tag_name_ns_raw()
1492 …if (ns == NULL || (nodep->ns != NULL && (xmlStrEqual(nodep->ns->href, (xmlChar *)ns) || xmlStrEqua… in dom_get_elements_by_tag_name_ns_raw()
1494 ret = nodep; in dom_get_elements_by_tag_name_ns_raw()
1500 ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index); in dom_get_elements_by_tag_name_ns_raw()
1505 nodep = nodep->next; in dom_get_elements_by_tag_name_ns_raw()
1513 void dom_normalize (xmlNodePtr nodep TSRMLS_DC) in dom_normalize()
1519 child = nodep->children; in dom_normalize()
1632 xmlNsPtr dom_get_ns(xmlNodePtr nodep, char *uri, int *errorcode, char *prefix) { in dom_get_ns() argument
1640 nsptr = xmlNewNs(nodep, (xmlChar *)uri, (xmlChar *)prefix); in dom_get_ns()