Lines Matching refs:elemp

633 	xmlNodePtr elemp;  in PHP_FUNCTION()  local
643 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
659 xmlNodePtr elemp; in PHP_FUNCTION() local
670 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
672 strattr = xmlGetNsProp(elemp, (xmlChar *) name, (xmlChar *) uri); in PHP_FUNCTION()
679 nsptr = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
739 xmlNodePtr elemp, nodep = NULL; in PHP_FUNCTION() local
757 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
761 if (dom_node_is_read_only(elemp) == SUCCESS) { in PHP_FUNCTION()
770 nodep = (xmlNodePtr) xmlHasNsProp(elemp, (xmlChar *) localname, (xmlChar *) uri); in PHP_FUNCTION()
780 nsptr = dom_get_nsdecl(elemp, NULL); in PHP_FUNCTION()
782 nsptr = dom_get_nsdecl(elemp, (xmlChar *)localname); in PHP_FUNCTION()
785 nsptr = xmlSearchNsByHref(elemp->doc, elemp, (xmlChar *)uri); in PHP_FUNCTION()
799 nsptr = _dom_new_reconNs(elemp->doc, elemp, nsptr); in PHP_FUNCTION()
807 xmlNewNs(elemp, (xmlChar *)value, NULL); in PHP_FUNCTION()
808 xmlReconciliateNs(elemp->doc, elemp); in PHP_FUNCTION()
814 xmlNewNs(elemp, (xmlChar *)value, (xmlChar *)localname); in PHP_FUNCTION()
816 nsptr = dom_get_ns(elemp, uri, &errorcode, prefix); in PHP_FUNCTION()
818 xmlReconciliateNs(elemp->doc, elemp); in PHP_FUNCTION()
830 xmlSetNsProp(elemp, nsptr, (xmlChar *)localname, (xmlChar *)value); in PHP_FUNCTION()
838 attr = xmlHasProp(elemp, (xmlChar *)localname); in PHP_FUNCTION()
842 xmlSetProp(elemp, (xmlChar *)localname, (xmlChar *)value); in PHP_FUNCTION()
924 xmlNodePtr elemp, fakeAttrp; in PHP_FUNCTION() local
935 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
937 attrp = xmlHasNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()
942 nsptr = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
950 fakeAttrp = xmlNewDocNode(elemp->doc, NULL, (xmlChar *) nsptr->prefix, nsptr->href); in PHP_FUNCTION()
952 fakeAttrp = xmlNewDocNode(elemp->doc, NULL, (xmlChar *)"xmlns", nsptr->href); in PHP_FUNCTION()
955 fakeAttrp->parent = elemp; in PHP_FUNCTION()
1052 xmlNodePtr elemp; in PHP_FUNCTION() local
1062 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1108 xmlNodePtr elemp; in PHP_FUNCTION() local
1119 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1121 value = xmlGetNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()
1128 nsp = dom_get_nsdecl(elemp, (xmlChar *)name); in PHP_FUNCTION()
1201 xmlNodePtr elemp; in PHP_FUNCTION() local
1212 DOM_GET_OBJ(elemp, id, xmlNodePtr, intern); in PHP_FUNCTION()
1214 if (dom_node_is_read_only(elemp) == SUCCESS) { in PHP_FUNCTION()
1219 attrp = xmlHasNsProp(elemp, (xmlChar *)name, (xmlChar *)uri); in PHP_FUNCTION()