Lines Matching refs:elemp

631 	xmlNodePtr elemp;  in PHP_FUNCTION()  local
641 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
657 xmlNodePtr elemp; in PHP_FUNCTION() local
668 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
670 strattr = xmlGetNsProp(elemp, (xmlChar *) name, (xmlChar *) uri); in PHP_FUNCTION()
677 nsptr = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
737 xmlNodePtr elemp, nodep = NULL; in PHP_FUNCTION() local
755 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
759 if (dom_node_is_read_only(elemp) == SUCCESS) { in PHP_FUNCTION()
768 nodep = (xmlNodePtr) xmlHasNsProp(elemp, (xmlChar *) localname, (xmlChar *) uri); in PHP_FUNCTION()
778 nsptr = dom_get_nsdecl(elemp, NULL); in PHP_FUNCTION()
780 nsptr = dom_get_nsdecl(elemp, (xmlChar *)localname); in PHP_FUNCTION()
783 nsptr = xmlSearchNsByHref(elemp->doc, elemp, (xmlChar *)uri); in PHP_FUNCTION()
797 nsptr = _dom_new_reconNs(elemp->doc, elemp, nsptr); in PHP_FUNCTION()
805 xmlNewNs(elemp, (xmlChar *)value, NULL); in PHP_FUNCTION()
806 xmlReconciliateNs(elemp->doc, elemp); in PHP_FUNCTION()
812 xmlNewNs(elemp, (xmlChar *)value, (xmlChar *)localname); in PHP_FUNCTION()
814 nsptr = dom_get_ns(elemp, uri, &errorcode, prefix); in PHP_FUNCTION()
816 xmlReconciliateNs(elemp->doc, elemp); in PHP_FUNCTION()
828 xmlSetNsProp(elemp, nsptr, (xmlChar *)localname, (xmlChar *)value); in PHP_FUNCTION()
836 attr = xmlHasProp(elemp, (xmlChar *)localname); in PHP_FUNCTION()
840 xmlSetProp(elemp, (xmlChar *)localname, (xmlChar *)value); in PHP_FUNCTION()
922 xmlNodePtr elemp, fakeAttrp; in PHP_FUNCTION() local
933 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
935 attrp = xmlHasNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()
940 nsptr = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
948 fakeAttrp = xmlNewDocNode(elemp->doc, NULL, (xmlChar *) nsptr->prefix, nsptr->href); in PHP_FUNCTION()
950 fakeAttrp = xmlNewDocNode(elemp->doc, NULL, (xmlChar *)"xmlns", nsptr->href); in PHP_FUNCTION()
953 fakeAttrp->parent = elemp; in PHP_FUNCTION()
1050 xmlNodePtr elemp; in PHP_FUNCTION() local
1060 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1106 xmlNodePtr elemp; in PHP_FUNCTION() local
1117 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1119 value = xmlGetNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()
1126 nsp = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
1199 xmlNodePtr elemp; in PHP_FUNCTION() local
1210 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1212 if (dom_node_is_read_only(elemp) == SUCCESS) { in PHP_FUNCTION()
1217 attrp = xmlHasNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()