isprefix           68 ext/simplexml/php_simplexml.h 		int                   isprefix;
isprefix           67 ext/simplexml/simplexml.c static void _node_as_zval(php_sxe_object *sxe, xmlNodePtr node, zval *value, SXE_ITER itertype, char *name, const xmlChar *nsprefix, int isprefix)
isprefix           80 ext/simplexml/simplexml.c 		subnode->iter.isprefix = isprefix;
isprefix          146 ext/simplexml/simplexml.c 		if (node->type == XML_ELEMENT_NODE && match_ns(sxe, node, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          171 ext/simplexml/simplexml.c 		if (node->type == XML_ELEMENT_NODE && match_ns(sxe, node, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          208 ext/simplexml/simplexml.c 		if (node->type == XML_ELEMENT_NODE && match_ns(sxe, node, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          292 ext/simplexml/simplexml.c 						if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && match_ns(sxe, (xmlNodePtr) attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          294 ext/simplexml/simplexml.c 								_node_as_zval(sxe, (xmlNodePtr) attr, rv, SXE_ITER_NONE, NULL, sxe->iter.nsprefix, sxe->iter.isprefix);
isprefix          303 ext/simplexml/simplexml.c 						if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && !xmlStrcmp(attr->name, (xmlChar *)name) && match_ns(sxe, (xmlNodePtr) attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          304 ext/simplexml/simplexml.c 							_node_as_zval(sxe, (xmlNodePtr) attr, rv, SXE_ITER_NONE, NULL, sxe->iter.nsprefix, sxe->iter.isprefix);
isprefix          334 ext/simplexml/simplexml.c 					_node_as_zval(sxe, node, rv, SXE_ITER_NONE, NULL, sxe->iter.nsprefix, sxe->iter.isprefix);
isprefix          340 ext/simplexml/simplexml.c 					_node_as_zval(sxe, node, rv, SXE_ITER_NONE, NULL, sxe->iter.nsprefix, sxe->iter.isprefix);
isprefix          349 ext/simplexml/simplexml.c 					_node_as_zval(sxe, node, rv, newtype, name, sxe->iter.nsprefix, sxe->iter.isprefix);
isprefix          352 ext/simplexml/simplexml.c 				_node_as_zval(sxe, node, rv, SXE_ITER_ELEMENT, name, sxe->iter.nsprefix, sxe->iter.isprefix);
isprefix          548 ext/simplexml/simplexml.c 					if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && match_ns(sxe, (xmlNodePtr) attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          560 ext/simplexml/simplexml.c 					if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && !xmlStrcmp(attr->name, (xmlChar *)Z_STRVAL_P(member)) && match_ns(sxe, (xmlNodePtr) attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          697 ext/simplexml/simplexml.c 	_node_as_zval(sxe, node, &ret, type, name, sxe->iter.nsprefix, sxe->iter.isprefix);
isprefix          758 ext/simplexml/simplexml.c 					if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && match_ns(sxe, (xmlNodePtr) attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          769 ext/simplexml/simplexml.c 					if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && !xmlStrcmp(attr->name, (xmlChar *)Z_STRVAL_P(member)) && match_ns(sxe, (xmlNodePtr) attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          886 ext/simplexml/simplexml.c 					if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && match_ns(sxe, (xmlNodePtr) attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          899 ext/simplexml/simplexml.c 					if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && !xmlStrcmp(attr->name, (xmlChar *)Z_STRVAL_P(member)) && match_ns(sxe, (xmlNodePtr) attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix          978 ext/simplexml/simplexml.c static void _get_base_node_value(php_sxe_object *sxe_ref, xmlNodePtr node, zval *value, xmlChar *nsprefix, int isprefix)
isprefix          995 ext/simplexml/simplexml.c 			subnode->iter.isprefix = isprefix;
isprefix         1051 ext/simplexml/simplexml.c 			if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && match_ns(sxe, (xmlNodePtr)attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix         1089 ext/simplexml/simplexml.c 			if (node->type == XML_ELEMENT_NODE && (! match_ns(sxe, node, sxe->iter.nsprefix, sxe->iter.isprefix))) {
isprefix         1162 ext/simplexml/simplexml.c 				if ((!test || !xmlStrcmp(attr->name, sxe->iter.name)) && match_ns(sxe, (xmlNodePtr)attr, sxe->iter.nsprefix, sxe->iter.isprefix)) {
isprefix         1213 ext/simplexml/simplexml.c 			if (node->type == XML_ELEMENT_NODE && (! match_ns(sxe, node, sxe->iter.nsprefix, sxe->iter.isprefix))) {
isprefix         1224 ext/simplexml/simplexml.c 			_get_base_node_value(sxe, node, &value, sxe->iter.nsprefix, sxe->iter.isprefix);
isprefix         1620 ext/simplexml/simplexml.c 	zend_bool       isprefix = 0;
isprefix         1622 ext/simplexml/simplexml.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!b", &nsprefix, &nsprefix_len, &isprefix) == FAILURE) {
isprefix         1635 ext/simplexml/simplexml.c 	_node_as_zval(sxe, node, return_value, SXE_ITER_CHILD, NULL, (xmlChar *)nsprefix, isprefix);
isprefix         1669 ext/simplexml/simplexml.c 	zend_bool       isprefix = 0;
isprefix         1671 ext/simplexml/simplexml.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "|s!b", &nsprefix, &nsprefix_len, &isprefix) == FAILURE) {
isprefix         1684 ext/simplexml/simplexml.c 	_node_as_zval(sxe, node, return_value, SXE_ITER_ATTRLIST, NULL, (xmlChar *)nsprefix, isprefix);
isprefix         2056 ext/simplexml/simplexml.c 	clone->iter.isprefix = sxe->iter.isprefix;
isprefix         2200 ext/simplexml/simplexml.c 	zend_bool       isprefix = 0;
isprefix         2202 ext/simplexml/simplexml.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|C!lsb", &filename, &filename_len, &ce, &options, &ns, &ns_len, &isprefix) == FAILURE) {
isprefix         2225 ext/simplexml/simplexml.c 	sxe->iter.isprefix = isprefix;
isprefix         2246 ext/simplexml/simplexml.c 	zend_bool       isprefix = 0;
isprefix         2248 ext/simplexml/simplexml.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|C!lsb", &data, &data_len, &ce, &options, &ns, &ns_len, &isprefix) == FAILURE) {
isprefix         2279 ext/simplexml/simplexml.c 	sxe->iter.isprefix = isprefix;
isprefix         2296 ext/simplexml/simplexml.c 	zend_bool       is_url = 0, isprefix = 0;
isprefix         2298 ext/simplexml/simplexml.c 	if (zend_parse_parameters_throw(ZEND_NUM_ARGS(), "s|lbsb", &data, &data_len, &options, &is_url, &ns, &ns_len, &isprefix) == FAILURE) {
isprefix         2324 ext/simplexml/simplexml.c 	sxe->iter.isprefix = isprefix;
isprefix         2343 ext/simplexml/simplexml.c 	int isprefix  = sxe->iter.isprefix;
isprefix         2349 ext/simplexml/simplexml.c 					if (!xmlStrcmp(node->name, sxe->iter.name) && match_ns(sxe, node, prefix, isprefix)) {
isprefix         2358 ext/simplexml/simplexml.c 					if (match_ns(sxe, node, prefix, isprefix)) {
isprefix         2368 ext/simplexml/simplexml.c 				if (!xmlStrcmp(node->name, sxe->iter.name) && match_ns(sxe, node, prefix, isprefix)) {
isprefix         2377 ext/simplexml/simplexml.c 				if (match_ns(sxe, node, prefix, isprefix)) {
isprefix         2386 ext/simplexml/simplexml.c 		_node_as_zval(sxe, node, &sxe->iter.data, SXE_ITER_NONE, NULL, prefix, isprefix);