Lines Matching refs:elemp

635 	xmlNodePtr elemp;  in PHP_FUNCTION()  local
646 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
662 xmlNodePtr elemp; in PHP_FUNCTION() local
674 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
676 strattr = xmlGetNsProp(elemp, (xmlChar *) name, (xmlChar *) uri); in PHP_FUNCTION()
683 nsptr = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
743 xmlNodePtr elemp, nodep = NULL; in PHP_FUNCTION() local
762 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
766 if (dom_node_is_read_only(elemp) == SUCCESS) { in PHP_FUNCTION()
775 nodep = (xmlNodePtr) xmlHasNsProp(elemp, (xmlChar *) localname, (xmlChar *) uri); in PHP_FUNCTION()
785 nsptr = dom_get_nsdecl(elemp, NULL); in PHP_FUNCTION()
787 nsptr = dom_get_nsdecl(elemp, (xmlChar *)localname); in PHP_FUNCTION()
790 nsptr = xmlSearchNsByHref(elemp->doc, elemp, (xmlChar *)uri); in PHP_FUNCTION()
804 nsptr = _dom_new_reconNs(elemp->doc, elemp, nsptr); in PHP_FUNCTION()
812 xmlNewNs(elemp, (xmlChar *)value, NULL); in PHP_FUNCTION()
813 xmlReconciliateNs(elemp->doc, elemp); in PHP_FUNCTION()
819 xmlNewNs(elemp, (xmlChar *)value, (xmlChar *)localname); in PHP_FUNCTION()
821 nsptr = dom_get_ns(elemp, uri, &errorcode, prefix); in PHP_FUNCTION()
823 xmlReconciliateNs(elemp->doc, elemp); in PHP_FUNCTION()
835 xmlSetNsProp(elemp, nsptr, (xmlChar *)localname, (xmlChar *)value); in PHP_FUNCTION()
843 attr = xmlHasProp(elemp, (xmlChar *)localname); in PHP_FUNCTION()
847 xmlSetProp(elemp, (xmlChar *)localname, (xmlChar *)value); in PHP_FUNCTION()
930 xmlNodePtr elemp, fakeAttrp; in PHP_FUNCTION() local
942 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
944 attrp = xmlHasNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()
949 nsptr = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
957 fakeAttrp = xmlNewDocNode(elemp->doc, NULL, (xmlChar *) nsptr->prefix, nsptr->href); in PHP_FUNCTION()
959 fakeAttrp = xmlNewDocNode(elemp->doc, NULL, (xmlChar *)"xmlns", nsptr->href); in PHP_FUNCTION()
962 fakeAttrp->parent = elemp; in PHP_FUNCTION()
1060 xmlNodePtr elemp; in PHP_FUNCTION() local
1071 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1118 xmlNodePtr elemp; in PHP_FUNCTION() local
1130 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1132 value = xmlGetNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()
1139 nsp = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
1211 xmlNodePtr elemp; in PHP_FUNCTION() local
1223 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1225 if (dom_node_is_read_only(elemp) == SUCCESS) { in PHP_FUNCTION()
1230 attrp = xmlHasNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()