Lines Matching refs:errorcode
1214 int errorcode; in PHP_FUNCTION() local
1215 nsptr = dom_get_ns(root, (char *) nodep->ns->href, &errorcode, (char *) nodep->ns->prefix); in PHP_FUNCTION()
1238 int errorcode; in PHP_FUNCTION() local
1247 errorcode = dom_check_qname(name, &localname, &prefix, uri_len, name_len); in PHP_FUNCTION()
1249 if (errorcode == 0) { in PHP_FUNCTION()
1255 nsptr = dom_get_ns(nodep, uri, &errorcode, prefix); in PHP_FUNCTION()
1260 errorcode = INVALID_CHARACTER_ERR; in PHP_FUNCTION()
1269 if (errorcode != 0) { in PHP_FUNCTION()
1273 php_dom_throw_error(errorcode, dom_get_strict_error(intern->document) TSRMLS_CC); in PHP_FUNCTION()
1302 int errorcode; in PHP_FUNCTION() local
1312 errorcode = dom_check_qname(name, &localname, &prefix, uri_len, name_len); in PHP_FUNCTION()
1313 if (errorcode == 0) { in PHP_FUNCTION()
1319 nsptr = dom_get_ns(root, uri, &errorcode, prefix); in PHP_FUNCTION()
1324 errorcode = INVALID_CHARACTER_ERR; in PHP_FUNCTION()
1337 if (errorcode != 0) { in PHP_FUNCTION()
1341 php_dom_throw_error(errorcode, dom_get_strict_error(intern->document) TSRMLS_CC); in PHP_FUNCTION()