children           30 Zend/zend_ast.c 	ast->children = 0;
children           40 Zend/zend_ast.c 	ast->children = 1;
children           49 Zend/zend_ast.c 	ast->children = 2;
children           59 Zend/zend_ast.c 	ast->children = 3;
children           70 Zend/zend_ast.c 	ast->children = 0;
children           76 Zend/zend_ast.c 	if ((*ast)->children >= 4 && (*ast)->children == ((*ast)->children & -(*ast)->children)) {
children           77 Zend/zend_ast.c 		*ast = erealloc(*ast, sizeof(zend_ast) + sizeof(zend_ast*) * ((*ast)->children * 2 + 1));
children           79 Zend/zend_ast.c 	(&(*ast)->u.child)[(*ast)->children++] = op;
children           84 Zend/zend_ast.c 	*ast = erealloc(*ast, sizeof(zend_ast) + sizeof(zend_ast*) * ((*ast)->children - 1));
children           94 Zend/zend_ast.c 		for (i = 0; i < ast->children; i++) {
children          323 Zend/zend_ast.c 				for (i = 0; i < ast->children; i+=2) {
children          358 Zend/zend_ast.c 	} else if (ast->children) {
children          359 Zend/zend_ast.c 		zend_ast *new = emalloc(sizeof(zend_ast) + sizeof(zend_ast*) * (ast->children - 1));
children          362 Zend/zend_ast.c 		new->children = ast->children;
children          363 Zend/zend_ast.c 		for (i = 0; i < ast->children; i++) {
children          378 Zend/zend_ast.c 		for (i = 0; i < ast->children; i++) {
children           41 Zend/zend_ast.h 	unsigned short children;
children          182 ext/dom/attr.c 	if (attrp->children) {
children          183 ext/dom/attr.c 		node_list_unlink(attrp->children TSRMLS_CC);
children         1827 ext/dom/document.c 					   php_dom_remove_xinclude_nodes(cur->children TSRMLS_CC);
children         1837 ext/dom/document.c 				php_dom_remove_xinclude_nodes(cur->children TSRMLS_CC);
children         1868 ext/dom/document.c 	root = (xmlNodePtr) docp->children;
children         2299 ext/dom/document.c 			for (node = node->children; node; node = node->next) {
children           99 ext/dom/documentfragment.c 				if (prop->children) {
children          100 ext/dom/documentfragment.c 					cur = prop->children;
children          109 ext/dom/documentfragment.c 		if (tree->children != NULL) {
children          110 ext/dom/documentfragment.c 			cur = tree->children;
children          202 ext/dom/documenttype.c 	if (dtdptr->doc != NULL && ((intsubset = xmlGetIntSubset(dtdptr->doc)) != NULL) && intsubset->children != NULL) {
children          204 ext/dom/documenttype.c 		xmlNodePtr cur = intsubset->children;
children           73 ext/dom/dom_iterators.c 	ret->children = NULL;
children          222 ext/dom/dom_iterators.c 						basenode = basenode->children;
children          298 ext/dom/dom_iterators.c 						curnode = (xmlNodePtr) nodep->children;
children          304 ext/dom/dom_iterators.c 						nodep = nodep->children;
children          213 ext/dom/domimplementation.c 		docp->children = (xmlNodePtr) doctype;
children          224 ext/dom/domimplementation.c 				docp->children = NULL;
children          349 ext/dom/element.c 				value = xmlNodeListGetString(attr->doc, attr->children, 1);
children          407 ext/dom/element.c 				node_list_unlink(attr->children TSRMLS_CC);
children          465 ext/dom/element.c 			node_list_unlink(attrp->children TSRMLS_CC);
children          511 ext/dom/element.c 		if (attrp->children) {
children          512 ext/dom/element.c 			curns->prefix = xmlStrdup((xmlChar *) attrp->children);
children          514 ext/dom/element.c 		if (attrp->children) {
children          515 ext/dom/element.c 			attrp = xmlNewDocNode(nodep->doc, NULL, (xmlChar *) attrp->children, attrp->name);
children          777 ext/dom/element.c 				node_list_unlink(nodep->children TSRMLS_CC);
children          845 ext/dom/element.c 					node_list_unlink(attr->children TSRMLS_CC);
children          910 ext/dom/element.c 			node_list_unlink(attrp->children TSRMLS_CC);
children         1124 ext/dom/element.c 		id_val = xmlNodeListGetString(attrp->doc, attrp->children, 1);
children          311 ext/dom/node.c 			str = xmlNodeGetContent(nodep->children);
children          348 ext/dom/node.c 			if (nodep->children) {
children          349 ext/dom/node.c 				node_list_unlink(nodep->children TSRMLS_CC);
children          484 ext/dom/node.c 		first = nodep->children;
children          956 ext/dom/node.c 	newchild = fragment->children;
children          960 ext/dom/node.c 			nodep->children = newchild;
children          989 ext/dom/node.c 		fragment->children = NULL;
children         1040 ext/dom/node.c 	if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) {
children         1075 ext/dom/node.c 				if (new_child->parent->children == refp) {
children         1076 ext/dom/node.c 					new_child->parent->children = new_child;
children         1113 ext/dom/node.c 			if (parentp->children == NULL) {
children         1114 ext/dom/node.c 				parentp->children = child;
children         1165 ext/dom/node.c 	xmlNodePtr children, newchild, oldchild, nodep;
children         1184 ext/dom/node.c 	children = nodep->children;
children         1185 ext/dom/node.c 	if (!children) {
children         1208 ext/dom/node.c 	while (children) {
children         1209 ext/dom/node.c 		if (children == oldchild) {
children         1213 ext/dom/node.c 		children = children->next;
children         1253 ext/dom/node.c 	xmlNodePtr children, child, nodep;
children         1277 ext/dom/node.c 	children = nodep->children;
children         1278 ext/dom/node.c 	if (!children) {
children         1283 ext/dom/node.c 	while (children) {
children         1284 ext/dom/node.c 		if (children == child) {
children         1289 ext/dom/node.c 		children = children->next;
children         1338 ext/dom/node.c 	if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) {
children         1358 ext/dom/node.c 		if (nodep->children == NULL) {
children         1359 ext/dom/node.c 			nodep->children = child;
children         1418 ext/dom/node.c 	if (nodep->children) {
children           73 ext/dom/nodelist.c 						curnode = nodep->children;
children           85 ext/dom/nodelist.c 							nodep = nodep->children;
children          146 ext/dom/nodelist.c 							curnode = nodep->children;
children          156 ext/dom/nodelist.c 								nodep = nodep->children;
children         1043 ext/dom/php_dom.c 			node_list_unlink(node->children TSRMLS_CC);
children         1500 ext/dom/php_dom.c 			ret = dom_get_elements_by_tag_name_ns_raw(nodep->children, ns, local, cur, index);
children         1519 ext/dom/php_dom.c 	child = nodep->children;
children          155 ext/dom/xpath.c 								if (node->children) {
children          156 ext/dom/xpath.c 									curns->prefix = xmlStrdup((xmlChar *) node->children);
children          158 ext/dom/xpath.c 								if (node->children) {
children          159 ext/dom/xpath.c 									node = xmlNewDocNode(node->doc, NULL, (xmlChar *) node->children, node->name);
children          490 ext/dom/xpath.c 						if (node->children) {
children          491 ext/dom/xpath.c 							curns->prefix = xmlStrdup((char *) node->children);
children          493 ext/dom/xpath.c 						if (node->children) {
children          494 ext/dom/xpath.c 							node = xmlNewDocNode(docp, NULL, (char *) node->children, node->name);
children          248 ext/libxml/libxml.c 					php_libxml_node_free_list(node->children TSRMLS_CC);
children          251 ext/libxml/libxml.c 					php_libxml_node_free_list(node->children TSRMLS_CC);
children         1294 ext/libxml/libxml.c 				php_libxml_node_free_list((xmlNodePtr) node->children TSRMLS_CC);
children          234 ext/opcache/zend_accelerator_util_funcs.c 		node->children = 0;
children          258 ext/opcache/zend_accelerator_util_funcs.c 		node = emalloc(sizeof(zend_ast) + sizeof(zend_ast*) * (ast->children - 1));
children          260 ext/opcache/zend_accelerator_util_funcs.c 		node->children = ast->children;
children          261 ext/opcache/zend_accelerator_util_funcs.c 		for (i = 0; i < ast->children; i++) {
children          153 ext/opcache/zend_persist.c 		node = zend_accel_memdup(ast, sizeof(zend_ast) + sizeof(zend_ast*) * (ast->children - 1));
children          154 ext/opcache/zend_persist.c 		for (i = 0; i < ast->children; i++) {
children          107 ext/opcache/zend_persist_calc.c 		ADD_SIZE(sizeof(zend_ast) + sizeof(zend_ast*) * (ast->children - 1));
children          108 ext/opcache/zend_persist_calc.c 		for (i = 0; i < ast->children; i++) {
children          216 ext/simplexml/simplexml.c 		node = orgnode->children;
children          612 ext/simplexml/simplexml.c 				node = node->children;
children          632 ext/simplexml/simplexml.c 				while ((tempnode = (xmlNodePtr) newnode->children)) {
children          804 ext/simplexml/simplexml.c 				(!attr->children || !attr->children->content || !attr->children->content[0] || !xmlStrcmp(attr->children->content, "0")) ) {
children          818 ext/simplexml/simplexml.c 				node = node->children;
children          831 ext/simplexml/simplexml.c 					(!node->children || (node->children->type == XML_TEXT_NODE && !node->children->next &&
children          832 ext/simplexml/simplexml.c 						(!node->children->content || !node->children->content[0] || !xmlStrcmp(node->children->content, "0")))) ) {
children          948 ext/simplexml/simplexml.c 				node = node->children;
children         1013 ext/simplexml/simplexml.c 	if (node->children && node->children->type == XML_TEXT_NODE && !xmlIsBlankNode(node->children)) {
children         1014 ext/simplexml/simplexml.c 		contents = xmlNodeListGetString(node->doc, node->children, 1);
children         1107 ext/simplexml/simplexml.c 					ZVAL_STRING(value, sxe_xmlNodeListGetString((xmlDocPtr) sxe->document->ptr, attr->children, 1), 0);
children         1127 ext/simplexml/simplexml.c 			ZVAL_STRING(value, sxe_xmlNodeListGetString(node->doc, node->children, 1), 0);
children         1132 ext/simplexml/simplexml.c 			if ( sxe->iter.type == SXE_ITER_NONE || !node->children || !node->parent || !node->next || node->children->next || node->children->children || node->parent->children == node->parent->last ) {
children         1133 ext/simplexml/simplexml.c 				node = node->children;
children         1145 ext/simplexml/simplexml.c 			if (node->children != NULL || node->prev != NULL || node->next != NULL) {
children         1468 ext/simplexml/simplexml.c 		node = node->children;
children         1517 ext/simplexml/simplexml.c 			node = node->children;
children         1557 ext/simplexml/simplexml.c SXE_METHOD(children)
children         1827 ext/simplexml/simplexml.c 			contents = xmlNodeListGetString((xmlDocPtr) sxe->document->ptr, node->children, 1);
children         1837 ext/simplexml/simplexml.c 			if (sxe->node->node->children) {
children         1838 ext/simplexml/simplexml.c 				contents = xmlNodeListGetString((xmlDocPtr) sxe->document->ptr, sxe->node->node->children, 1);
children         2327 ext/simplexml/simplexml.c 				node = node->children;
children         2607 ext/simplexml/simplexml.c 	SXE_ME(children,               arginfo_simplexmlelement_children, ZEND_ACC_PUBLIC)
children          146 ext/simplexml/sxe.c 		node = node->children;
children          318 ext/soap/php_encoding.c 					id = (char*)attr->children->content;
children          335 ext/soap/php_encoding.c 					id = (char*)attr->children->content;
children          568 ext/soap/php_encoding.c 				parse_namespace(type_attr->children->content, &cptype, &ns);
children          602 ext/soap/php_encoding.c 			encodePtr  enc = get_encoder_from_prefix(SOAP_GLOBAL(sdl), data, type_attr->children->content);
children          638 ext/soap/php_encoding.c 			if (doc && doc->children) {				
children          639 ext/soap/php_encoding.c 				ret = xmlDocCopyNode(doc->children, parent->doc, 1);
children          692 ext/soap/php_encoding.c 	if (data && data->children) {
children          693 ext/soap/php_encoding.c 		if (data->children->type == XML_TEXT_NODE && data->children->next == NULL) {
children          695 ext/soap/php_encoding.c 				xmlBufferPtr in  = xmlBufferCreateStatic(data->children->content, xmlStrlen(data->children->content));
children          702 ext/soap/php_encoding.c 					ZVAL_STRING(ret, (char*)data->children->content, 1);
children          707 ext/soap/php_encoding.c 				ZVAL_STRING(ret, (char*)data->children->content, 1);
children          709 ext/soap/php_encoding.c 		} else if (data->children->type == XML_CDATA_SECTION_NODE && data->children->next == NULL) {
children          710 ext/soap/php_encoding.c 			ZVAL_STRING(ret, (char*)data->children->content, 1);
children          725 ext/soap/php_encoding.c 	if (data && data->children) {
children          726 ext/soap/php_encoding.c 		if (data->children->type == XML_TEXT_NODE && data->children->next == NULL) {
children          727 ext/soap/php_encoding.c 			whiteSpace_replace(data->children->content);
children          729 ext/soap/php_encoding.c 				xmlBufferPtr in  = xmlBufferCreateStatic(data->children->content, xmlStrlen(data->children->content));
children          736 ext/soap/php_encoding.c 					ZVAL_STRING(ret, (char*)data->children->content, 1);
children          741 ext/soap/php_encoding.c 				ZVAL_STRING(ret, (char*)data->children->content, 1);
children          743 ext/soap/php_encoding.c 		} else if (data->children->type == XML_CDATA_SECTION_NODE && data->children->next == NULL) {
children          744 ext/soap/php_encoding.c 			ZVAL_STRING(ret, (char*)data->children->content, 1);
children          759 ext/soap/php_encoding.c 	if (data && data->children) {
children          760 ext/soap/php_encoding.c 		if (data->children->type == XML_TEXT_NODE && data->children->next == NULL) {
children          761 ext/soap/php_encoding.c 			whiteSpace_collapse(data->children->content);
children          763 ext/soap/php_encoding.c 				xmlBufferPtr in  = xmlBufferCreateStatic(data->children->content, xmlStrlen(data->children->content));
children          770 ext/soap/php_encoding.c 					ZVAL_STRING(ret, (char*)data->children->content, 1);
children          775 ext/soap/php_encoding.c 				ZVAL_STRING(ret, (char*)data->children->content, 1);
children          777 ext/soap/php_encoding.c 		} else if (data->children->type == XML_CDATA_SECTION_NODE && data->children->next == NULL) {
children          778 ext/soap/php_encoding.c 			ZVAL_STRING(ret, (char*)data->children->content, 1);
children          796 ext/soap/php_encoding.c 	if (data && data->children) {
children          797 ext/soap/php_encoding.c 		if (data->children->type == XML_TEXT_NODE && data->children->next == NULL) {
children          798 ext/soap/php_encoding.c 			whiteSpace_collapse(data->children->content);
children          799 ext/soap/php_encoding.c 			str = (char*)php_base64_decode(data->children->content, strlen((char*)data->children->content), &str_len);
children          804 ext/soap/php_encoding.c 		} else if (data->children->type == XML_CDATA_SECTION_NODE && data->children->next == NULL) {
children          805 ext/soap/php_encoding.c 			str = (char*)php_base64_decode(data->children->content, strlen((char*)data->children->content), &str_len);
children          828 ext/soap/php_encoding.c 	if (data && data->children) {
children          829 ext/soap/php_encoding.c 		if (data->children->type == XML_TEXT_NODE && data->children->next == NULL) {
children          830 ext/soap/php_encoding.c 			whiteSpace_collapse(data->children->content);
children          831 ext/soap/php_encoding.c 		} else if (data->children->type != XML_CDATA_SECTION_NODE || data->children->next != NULL) {
children          835 ext/soap/php_encoding.c 		str_len = strlen((char*)data->children->content) / 2;
children          838 ext/soap/php_encoding.c 			c = data->children->content[j++];
children          848 ext/soap/php_encoding.c 			c = data->children->content[j++];
children         1033 ext/soap/php_encoding.c 	if (data && data->children) {
children         1034 ext/soap/php_encoding.c 		if (data->children->type == XML_TEXT_NODE && data->children->next == NULL) {
children         1038 ext/soap/php_encoding.c 			whiteSpace_collapse(data->children->content);
children         1039 ext/soap/php_encoding.c 			switch (is_numeric_string((char*)data->children->content, strlen((char*)data->children->content), &lval, &dval, 0)) {
children         1049 ext/soap/php_encoding.c 					if (strncasecmp((char*)data->children->content, "NaN", sizeof("NaN")-1) == 0) {
children         1051 ext/soap/php_encoding.c 					} else if (strncasecmp((char*)data->children->content, "INF", sizeof("INF")-1) == 0) {
children         1053 ext/soap/php_encoding.c 					} else if (strncasecmp((char*)data->children->content, "-INF", sizeof("-INF")-1) == 0) {
children         1074 ext/soap/php_encoding.c 	if (data && data->children) {
children         1075 ext/soap/php_encoding.c 		if (data->children->type == XML_TEXT_NODE && data->children->next == NULL) {
children         1079 ext/soap/php_encoding.c 			whiteSpace_collapse(data->children->content);
children         1082 ext/soap/php_encoding.c 			switch ((Z_TYPE_P(ret) = is_numeric_string((char*)data->children->content, strlen((char*)data->children->content), &lval, &dval, 0))) {
children         1165 ext/soap/php_encoding.c 	if (data && data->children) {
children         1166 ext/soap/php_encoding.c 		if (data->children->type == XML_TEXT_NODE && data->children->next == NULL) {
children         1167 ext/soap/php_encoding.c 			whiteSpace_collapse(data->children->content);
children         1168 ext/soap/php_encoding.c 			if (stricmp((char*)data->children->content, "true") == 0 ||
children         1169 ext/soap/php_encoding.c 				stricmp((char*)data->children->content, "t") == 0 ||
children         1170 ext/soap/php_encoding.c 				strcmp((char*)data->children->content, "1") == 0) {
children         1172 ext/soap/php_encoding.c 			} else if (stricmp((char*)data->children->content, "false") == 0 ||
children         1173 ext/soap/php_encoding.c 				stricmp((char*)data->children->content, "f") == 0 ||
children         1174 ext/soap/php_encoding.c 				strcmp((char*)data->children->content, "0") == 0) {
children         1177 ext/soap/php_encoding.c 				ZVAL_STRING(ret, (char*)data->children->content, 1);
children         1380 ext/soap/php_encoding.c 				xmlNodePtr node = get_node(data->children, model->u.element->name);
children         1387 ext/soap/php_encoding.c 					if (r_node && r_node->children && r_node->children->content) {
children         1388 ext/soap/php_encoding.c 						if (model->u.element->fixed && strcmp(model->u.element->fixed, (char*)r_node->children->content) != 0) {
children         1389 ext/soap/php_encoding.c 							soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, r_node->children->content);
children         1412 ext/soap/php_encoding.c 							if (node && node->children && node->children->content) {
children         1413 ext/soap/php_encoding.c 								if (model->u.element->fixed && strcmp(model->u.element->fixed, (char*)node->children->content) != 0) {
children         1414 ext/soap/php_encoding.c 									soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, node->children->content);
children         1464 ext/soap/php_encoding.c 				model_to_zval_any(ret, data->children TSRMLS_CC);
children         1594 ext/soap/php_encoding.c 					model_to_zval_any(ret, data->children TSRMLS_CC);
children         1612 ext/soap/php_encoding.c 					if (val && val->children && val->children->content) {
children         1613 ext/soap/php_encoding.c 						str_val = (char*)val->children->content;
children         1646 ext/soap/php_encoding.c 		trav = data->children;
children         1728 ext/soap/php_encoding.c 							if (property->children && property->children->content &&
children         1729 ext/soap/php_encoding.c 							    model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != 0) {
children         1730 ext/soap/php_encoding.c 								soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->content);
children         1751 ext/soap/php_encoding.c 						if (property->children && property->children->content &&
children         1752 ext/soap/php_encoding.c 						    model->u.element->fixed && strcmp(model->u.element->fixed, (char*)property->children->content) != 0) {
children         1753 ext/soap/php_encoding.c 							soap_error3(E_ERROR, "Encoding: Element '%s' has fixed value '%s' (value '%s' is not allowed)", model->u.element->name, model->u.element->fixed, property->children->content);
children         2018 ext/soap/php_encoding.c 							if (dummy->children && dummy->children->content) {
children         2019 ext/soap/php_encoding.c 								if ((*attr)->fixed && strcmp((*attr)->fixed, (char*)dummy->children->content) != 0) {
children         2020 ext/soap/php_encoding.c 									soap_error3(E_ERROR, "Encoding: Attribute '%s' has fixed value '%s' (value '%s' is not allowed)", (*attr)->name, (*attr)->fixed, dummy->children->content);
children         2030 ext/soap/php_encoding.c 									xmlSetNsProp(xmlParam, nsp, BAD_CAST((*attr)->name), dummy->children->content);
children         2032 ext/soap/php_encoding.c 									xmlSetProp(xmlParam, BAD_CAST((*attr)->name), dummy->children->content);
children         2582 ext/soap/php_encoding.c 	    attr->children && attr->children->content) {
children         2586 ext/soap/php_encoding.c 		parse_namespace(attr->children->content, &type, &ns);
children         2602 ext/soap/php_encoding.c 	    attr->children &&
children         2603 ext/soap/php_encoding.c 	    attr->children->content) {
children         2607 ext/soap/php_encoding.c 		parse_namespace(attr->children->content, &type, &ns);
children         2616 ext/soap/php_encoding.c 		    attr->children && attr->children->content) {
children         2617 ext/soap/php_encoding.c 			dimension = calc_dimension_12((char*)attr->children->content);
children         2618 ext/soap/php_encoding.c 			dims = get_position_12(dimension, (char*)attr->children->content);
children         2625 ext/soap/php_encoding.c 	    attr->children && attr->children->content) {
children         2627 ext/soap/php_encoding.c 		dimension = calc_dimension_12((char*)attr->children->content);
children         2628 ext/soap/php_encoding.c 		dims = get_position_12(dimension, (char*)attr->children->content);
children         2710 ext/soap/php_encoding.c 	     attr->children && attr->children->content) {
children         2711 ext/soap/php_encoding.c 		char* tmp = strrchr((char*)attr->children->content,'[');
children         2714 ext/soap/php_encoding.c 			tmp = (char*)attr->children->content;
children         2720 ext/soap/php_encoding.c 	trav = data->children;
children         2728 ext/soap/php_encoding.c 			if (position != NULL && position->children && position->children->content) {
children         2729 ext/soap/php_encoding.c 				char* tmp = strrchr((char*)position->children->content, '[');
children         2731 ext/soap/php_encoding.c 					tmp = (char*)position->children->content;
children         2841 ext/soap/php_encoding.c 	if (data && data->children) {
children         2843 ext/soap/php_encoding.c 		trav = data->children;
children         2845 ext/soap/php_encoding.c 		trav = data->children;
children         2847 ext/soap/php_encoding.c 			xmlKey = get_node(item->children, "key");
children         2852 ext/soap/php_encoding.c 			xmlValue = get_node(item->children, "value");
children         2912 ext/soap/php_encoding.c 		  type_name = tmpattr->children->content;
children         2913 ext/soap/php_encoding.c 			enc = get_encoder_from_prefix(SOAP_GLOBAL(sdl), data, tmpattr->children->content);
children         2943 ext/soap/php_encoding.c 				trav = data->children;
children         3119 ext/soap/php_encoding.c 			if (dummy && dummy->children && dummy->children->content) {
children         3123 ext/soap/php_encoding.c 				smart_str_appends(&list, (char*)dummy->children->content);
children         3158 ext/soap/php_encoding.c 			if (dummy && dummy->children && dummy->children->content) {
children         3162 ext/soap/php_encoding.c 				smart_str_appends(&list, (char*)dummy->children->content);
children         3270 ext/soap/php_encoding.c 		parent->children = ret;
children         3426 ext/soap/php_encoding.c 			if (href->children->content[0] == '#') {
children         3427 ext/soap/php_encoding.c 				xmlNodePtr ret = get_node_with_attribute_recursive(data->doc->children, NULL, "id", (char*)&href->children->content[1]);
children         3429 ext/soap/php_encoding.c 					soap_error1(E_ERROR, "Encoding: Unresolved reference '%s'", href->children->content);
children         3434 ext/soap/php_encoding.c 				soap_error1(E_ERROR, "Encoding: External reference '%s'", href->children->content);
children         3443 ext/soap/php_encoding.c 			if (href->children->content[0] == '#') {
children         3444 ext/soap/php_encoding.c 				id = href->children->content+1;
children         3446 ext/soap/php_encoding.c 				id = href->children->content;
children         3448 ext/soap/php_encoding.c 			ret = get_node_with_attribute_recursive_ex(data->doc->children, NULL, NULL, "id", (char*)id, SOAP_1_2_ENC_NAMESPACE);
children         3450 ext/soap/php_encoding.c 				soap_error1(E_ERROR, "Encoding: Unresolved reference '%s'", href->children->content);
children         3452 ext/soap/php_encoding.c 				soap_error1(E_ERROR, "Encoding: Violation of id and ref information items '%s'", href->children->content);
children         3527 ext/soap/php_encoding.c 			xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), prefix);
children         3545 ext/soap/php_encoding.c 			xmlns = xmlNewNs(node->doc->children, BAD_CAST(ns), BAD_CAST(prefix.c));
children           57 ext/soap/php_packet_soap.c 	trav = response->children;
children           93 ext/soap/php_packet_soap.c 			} else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) {
children          104 ext/soap/php_packet_soap.c 	trav = env->children;
children          143 ext/soap/php_packet_soap.c 			} else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) {
children          169 ext/soap/php_packet_soap.c 				} else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) {
children          180 ext/soap/php_packet_soap.c 	fault = get_node_ex(body->children,"Fault",envelope_ns);
children          187 ext/soap/php_packet_soap.c 			tmp = get_node(fault->children, "faultcode");
children          188 ext/soap/php_packet_soap.c 			if (tmp != NULL && tmp->children != NULL) {
children          189 ext/soap/php_packet_soap.c 				faultcode = (char*)tmp->children->content;
children          192 ext/soap/php_packet_soap.c 			tmp = get_node(fault->children, "faultstring");
children          193 ext/soap/php_packet_soap.c 			if (tmp != NULL && tmp->children != NULL) {
children          199 ext/soap/php_packet_soap.c 			tmp = get_node(fault->children, "faultactor");
children          200 ext/soap/php_packet_soap.c 			if (tmp != NULL && tmp->children != NULL) {
children          206 ext/soap/php_packet_soap.c 			tmp = get_node(fault->children, "detail");
children          211 ext/soap/php_packet_soap.c 			tmp = get_node(fault->children, "Code");
children          212 ext/soap/php_packet_soap.c 			if (tmp != NULL && tmp->children != NULL) {
children          213 ext/soap/php_packet_soap.c 				tmp = get_node(tmp->children, "Value");
children          214 ext/soap/php_packet_soap.c 				if (tmp != NULL && tmp->children != NULL) {
children          215 ext/soap/php_packet_soap.c 					faultcode = (char*)tmp->children->content;
children          219 ext/soap/php_packet_soap.c 			tmp = get_node(fault->children,"Reason");
children          220 ext/soap/php_packet_soap.c 			if (tmp != NULL && tmp->children != NULL) {
children          222 ext/soap/php_packet_soap.c 				tmp = get_node(tmp->children,"Text");
children          223 ext/soap/php_packet_soap.c 				if (tmp != NULL && tmp->children != NULL) {
children          230 ext/soap/php_packet_soap.c 			tmp = get_node(fault->children,"Detail");
children          251 ext/soap/php_packet_soap.c 	resp = body->children;
children          301 ext/soap/php_packet_soap.c 							val = get_node(cur->children, param->paramName);
children          304 ext/soap/php_packet_soap.c 									val = get_node(cur->children, "return");
children          307 ext/soap/php_packet_soap.c 									val = get_node(cur->children, "result");
children          309 ext/soap/php_packet_soap.c 								if (val == NULL && cur->children && cur->children->next == NULL) {
children          310 ext/soap/php_packet_soap.c 									val = cur->children;								  
children          343 ext/soap/php_packet_soap.c 			val = resp->children;
children          396 ext/soap/php_packet_soap.c 		trav = head->children;
children          112 ext/soap/php_schema.c 		schema = get_node(doc->children, "schema");
children          119 ext/soap/php_schema.c 			if (ns != NULL && (new_tns == NULL || xmlStrcmp(ns->children->content, new_tns->children->content) != 0)) {
children          121 ext/soap/php_schema.c 				soap_error2(E_ERROR, "Parsing Schema: can't import schema from '%s', unexpected 'targetNamespace'='%s'", location, ns->children->content);
children          125 ext/soap/php_schema.c 				soap_error2(E_ERROR, "Parsing Schema: can't import schema from '%s', unexpected 'targetNamespace'='%s'", location, new_tns->children->content);
children          131 ext/soap/php_schema.c 					xmlSetProp(schema, BAD_CAST("targetNamespace"), tns->children->content);
children          133 ext/soap/php_schema.c 			} else if (tns != NULL && xmlStrcmp(tns->children->content, new_tns->children->content) != 0) {
children          187 ext/soap/php_schema.c 	trav = schema->children;
children          200 ext/soap/php_schema.c 			    uri = xmlBuildURI(location->children->content, trav->doc->URL);
children          202 ext/soap/php_schema.c 	    		uri = xmlBuildURI(location->children->content, base);
children          220 ext/soap/php_schema.c 			    uri = xmlBuildURI(location->children->content, trav->doc->URL);
children          222 ext/soap/php_schema.c 	    		uri = xmlBuildURI(location->children->content, base);
children          237 ext/soap/php_schema.c 			if (ns != NULL && tns != NULL && xmlStrcmp(ns->children->content, tns->children->content) == 0) {
children          239 ext/soap/php_schema.c 					soap_error1(E_ERROR, "Parsing Schema: can't import schema from '%s', namespace must not match the enclosing schema 'targetNamespace'", location->children->content);
children          248 ext/soap/php_schema.c 			    uri = xmlBuildURI(location->children->content, trav->doc->URL);
children          250 ext/soap/php_schema.c 	    		uri = xmlBuildURI(location->children->content, base);
children          324 ext/soap/php_schema.c 			newType->name = estrdup((char*)name->children->content);
children          325 ext/soap/php_schema.c 			newType->namens = estrdup((char*)ns->children->content);
children          354 ext/soap/php_schema.c 		newType->name = estrdup((char*)name->children->content);
children          355 ext/soap/php_schema.c 		newType->namens = estrdup((char*)ns->children->content);
children          368 ext/soap/php_schema.c 		create_encoder(sdl, cur_type, ns->children->content, name->children->content);
children          373 ext/soap/php_schema.c 	trav = simpleType->children;
children          421 ext/soap/php_schema.c 		parse_namespace(itemType->children->content, &type, &ns);
children          444 ext/soap/php_schema.c 	trav = listType->children;
children          467 ext/soap/php_schema.c 		newType->namens = estrdup((char*)tns->children->content);
children          504 ext/soap/php_schema.c 		str = estrdup((char*)memberTypes->children->content);
children          543 ext/soap/php_schema.c 	trav = unionType->children;
children          563 ext/soap/php_schema.c 			newType->namens = estrdup((char*)tns->children->content);
children          595 ext/soap/php_schema.c 	trav = simpCompType->children;
children          646 ext/soap/php_schema.c 		parse_namespace(base->children->content, &type, &ns);
children          662 ext/soap/php_schema.c 	trav = restType->children;
children          751 ext/soap/php_schema.c 		parse_namespace(base->children->content, &type, &ns);
children          762 ext/soap/php_schema.c 	trav = restType->children;
children          815 ext/soap/php_schema.c 		if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) ||
children          816 ext/soap/php_schema.c 			!strncmp((char*)fixed->children->content, "1", sizeof("1")))
children          825 ext/soap/php_schema.c 	(*valptr)->value = atoi((char*)value->children->content);
children          842 ext/soap/php_schema.c 		if (!strncmp((char*)fixed->children->content, "true", sizeof("true")) ||
children          843 ext/soap/php_schema.c 		    !strncmp((char*)fixed->children->content, "1", sizeof("1"))) {
children          853 ext/soap/php_schema.c 	(*valptr)->value = estrdup((char*)value->children->content);
children          876 ext/soap/php_schema.c 		parse_namespace(base->children->content, &type, &ns);
children          887 ext/soap/php_schema.c 	trav = extType->children;
children          931 ext/soap/php_schema.c 		parse_namespace(base->children->content, &type, &ns);
children          942 ext/soap/php_schema.c 	trav = extType->children;
children          987 ext/soap/php_schema.c 		model->min_occurs = atoi((char*)attr->children->content);
children          994 ext/soap/php_schema.c 		if (!strncmp((char*)attr->children->content, "unbounded", sizeof("unbounded"))) {
children          997 ext/soap/php_schema.c 			model->max_occurs = atoi((char*)attr->children->content);
children         1030 ext/soap/php_schema.c 	trav = all->children;
children         1080 ext/soap/php_schema.c 			parse_namespace(ref->children->content, &type, &ns);
children         1090 ext/soap/php_schema.c 					smart_str_appends(&key, (char*)ns->children->content);
children         1109 ext/soap/php_schema.c 			smart_str_appends(&key, (char*)ns->children->content);
children         1111 ext/soap/php_schema.c 			smart_str_appends(&key, (char*)name->children->content);
children         1144 ext/soap/php_schema.c 	trav = groupType->children;
children         1206 ext/soap/php_schema.c 	trav = choiceType->children;
children         1256 ext/soap/php_schema.c 	trav = seqType->children;
children         1318 ext/soap/php_schema.c 	trav = compCont->children;
children         1377 ext/soap/php_schema.c 			newType->name = estrdup((char*)name->children->content);
children         1378 ext/soap/php_schema.c 			newType->namens = estrdup((char*)ns->children->content);
children         1407 ext/soap/php_schema.c 		newType->name = estrdup((char*)name->children->content);
children         1408 ext/soap/php_schema.c 		newType->namens = estrdup((char*)ns->children->content);
children         1413 ext/soap/php_schema.c 		create_encoder(sdl, cur_type, ns->children->content, name->children->content);
children         1419 ext/soap/php_schema.c 	trav = compType->children;
children         1515 ext/soap/php_schema.c 			parse_namespace(ref->children->content, &type, &ns);
children         1526 ext/soap/php_schema.c 					smart_str_appends(&nscat, (char*)ns->children->content);
children         1538 ext/soap/php_schema.c 			newType->name = estrdup((char*)name->children->content);
children         1539 ext/soap/php_schema.c 			newType->namens = estrdup((char*)ns->children->content);
children         1595 ext/soap/php_schema.c 		if (!stricmp((char*)attr->children->content, "true") ||
children         1596 ext/soap/php_schema.c 			!stricmp((char*)attr->children->content, "1")) {
children         1610 ext/soap/php_schema.c 		cur_type->fixed = estrdup((char*)attr->children->content);
children         1620 ext/soap/php_schema.c 		cur_type->def = estrdup((char*)attr->children->content);
children         1626 ext/soap/php_schema.c 		if (strncmp((char*)attr->children->content, "qualified", sizeof("qualified")) == 0) {
children         1628 ext/soap/php_schema.c 		} else if (strncmp((char*)attr->children->content, "unqualified", sizeof("unqualified")) == 0) {
children         1642 ext/soap/php_schema.c 				if(def == NULL || strncmp((char*)def->children->content, "qualified", sizeof("qualified"))) {
children         1665 ext/soap/php_schema.c 		parse_namespace(type->children->content, &cptype, &str_ns);
children         1674 ext/soap/php_schema.c 	trav = element->children;
children         1749 ext/soap/php_schema.c 			parse_namespace(ref->children->content, &attr_name, &ns);
children         1760 ext/soap/php_schema.c 					smart_str_appends(&key, (char*)ns->children->content);
children         1777 ext/soap/php_schema.c 				smart_str_appends(&key, (char*)ns->children->content);
children         1779 ext/soap/php_schema.c 				newAttr->namens = estrdup((char*)ns->children->content);
children         1781 ext/soap/php_schema.c 			smart_str_appends(&key, (char*)name->children->content);
children         1812 ext/soap/php_schema.c 		parse_namespace(type->children->content, &cptype, &str_ns);
children         1824 ext/soap/php_schema.c 			newAttr->def = estrdup((char*)attr->children->content);
children         1826 ext/soap/php_schema.c 			newAttr->fixed = estrdup((char*)attr->children->content);
children         1828 ext/soap/php_schema.c 			if (strncmp((char*)attr->children->content, "qualified", sizeof("qualified")) == 0) {
children         1830 ext/soap/php_schema.c 			} else if (strncmp((char*)attr->children->content, "unqualified", sizeof("unqualified")) == 0) {
children         1838 ext/soap/php_schema.c 			newAttr->name = estrdup((char*)attr->children->content);
children         1844 ext/soap/php_schema.c 			if (strncmp((char*)attr->children->content, "prohibited", sizeof("prohibited")) == 0) {
children         1846 ext/soap/php_schema.c 			} else if (strncmp((char*)attr->children->content, "required", sizeof("required")) == 0) {
children         1848 ext/soap/php_schema.c 			} else if (strncmp((char*)attr->children->content, "optional", sizeof("optional")) == 0) {
children         1864 ext/soap/php_schema.c 				parse_namespace(attr->children->content, &value, &ns);
children         1870 ext/soap/php_schema.c 					ext->val = estrdup((char*)attr->children->content);
children         1896 ext/soap/php_schema.c 				if(def == NULL || strncmp((char*)def->children->content, "qualified", sizeof("qualified"))) {
children         1909 ext/soap/php_schema.c 	trav = attrType->children;
children         1932 ext/soap/php_schema.c 			dummy_type->namens = estrdup((char*)tns->children->content);
children         1967 ext/soap/php_schema.c 			newType->name = estrdup((char*)name->children->content);
children         1968 ext/soap/php_schema.c 			newType->namens = estrdup((char*)ns->children->content);
children         1993 ext/soap/php_schema.c 			parse_namespace(ref->children->content, &group_name, &ns);
children         2013 ext/soap/php_schema.c 	trav = attrGroup->children;
children          219 ext/soap/php_sdl.c 		     attr->children && attr->children->content &&
children          220 ext/soap/php_sdl.c 		     (strcmp((char*)attr->children->content, "1") == 0 ||
children          221 ext/soap/php_sdl.c 		      strcmp((char*)attr->children->content, "true") == 0)) {
children          348 ext/soap/php_sdl.c 	root = wsdl->children;
children          364 ext/soap/php_sdl.c 			tmpsdl->target_ns = estrdup((char*)targetNamespace->children->content);
children          368 ext/soap/php_sdl.c 	trav = definitions->children;
children          376 ext/soap/php_sdl.c 			xmlNodePtr trav2 = trav->children;
children          394 ext/soap/php_sdl.c 					uri = xmlBuildURI(tmp->children->content, trav->doc->URL);
children          396 ext/soap/php_sdl.c 					uri = xmlBuildURI(tmp->children->content, base);
children          405 ext/soap/php_sdl.c 			if (name && name->children && name->children->content) {
children          406 ext/soap/php_sdl.c 				if (zend_hash_add(&ctx->messages, (char*)name->children->content, xmlStrlen(name->children->content)+1,&trav, sizeof(xmlNodePtr), NULL) != SUCCESS) {
children          407 ext/soap/php_sdl.c 					soap_error1(E_ERROR, "Parsing WSDL: <message> '%s' already defined", name->children->content);
children          415 ext/soap/php_sdl.c 			if (name && name->children && name->children->content) {
children          416 ext/soap/php_sdl.c 				if (zend_hash_add(&ctx->portTypes, (char*)name->children->content, xmlStrlen(name->children->content)+1,&trav, sizeof(xmlNodePtr), NULL) != SUCCESS) {
children          417 ext/soap/php_sdl.c 					soap_error1(E_ERROR, "Parsing WSDL: <portType> '%s' already defined", name->children->content);
children          425 ext/soap/php_sdl.c 			if (name && name->children && name->children->content) {
children          426 ext/soap/php_sdl.c 				if (zend_hash_add(&ctx->bindings, (char*)name->children->content, xmlStrlen(name->children->content)+1,&trav, sizeof(xmlNodePtr), NULL) != SUCCESS) {
children          427 ext/soap/php_sdl.c 					soap_error1(E_ERROR, "Parsing WSDL: <binding> '%s' already defined", name->children->content);
children          435 ext/soap/php_sdl.c 			if (name && name->children && name->children->content) {
children          436 ext/soap/php_sdl.c 				if (zend_hash_add(&ctx->services, (char*)name->children->content, xmlStrlen(name->children->content)+1,&trav, sizeof(xmlNodePtr), NULL) != SUCCESS) {
children          437 ext/soap/php_sdl.c 					soap_error1(E_ERROR, "Parsing WSDL: <service> '%s' already defined", name->children->content);
children          461 ext/soap/php_sdl.c 	ctype = strrchr((char*)tmp->children->content,':');
children          463 ext/soap/php_sdl.c 		ctype = (char*)tmp->children->content;
children          468 ext/soap/php_sdl.c 		soap_error1(E_ERROR, "Parsing WSDL: Missing <message> with name '%s'", tmp->children->content);
children          475 ext/soap/php_sdl.c 	part = get_node_with_attribute_ex((*message)->children, "part", WSDL_NAMESPACE, "name", (char*)tmp->children->content, NULL);
children          477 ext/soap/php_sdl.c 		soap_error1(E_ERROR, "Parsing WSDL: Missing part '%s' in <message>", tmp->children->content);
children          482 ext/soap/php_sdl.c 	h->name = estrdup((char*)tmp->children->content);
children          485 ext/soap/php_sdl.c 	if (tmp && !strncmp((char*)tmp->children->content, "encoded", sizeof("encoded"))) {
children          493 ext/soap/php_sdl.c 		h->ns = estrdup((char*)tmp->children->content);
children          499 ext/soap/php_sdl.c 			if (strncmp((char*)tmp->children->content, SOAP_1_1_ENC_NAMESPACE, sizeof(SOAP_1_1_ENC_NAMESPACE)) == 0) {
children          501 ext/soap/php_sdl.c 			} else if (strncmp((char*)tmp->children->content, SOAP_1_2_ENC_NAMESPACE, sizeof(SOAP_1_2_ENC_NAMESPACE)) == 0) {
children          504 ext/soap/php_sdl.c 				soap_error1(E_ERROR, "Parsing WSDL: Unknown encodingStyle '%s'", tmp->children->content);
children          513 ext/soap/php_sdl.c 		h->encode = get_encoder_from_prefix(ctx->sdl, part, tmp->children->content);
children          517 ext/soap/php_sdl.c 			h->element = get_element(ctx->sdl, part, tmp->children->content);
children          531 ext/soap/php_sdl.c 		xmlNodePtr trav = header->children;
children          566 ext/soap/php_sdl.c 	trav = node->children;
children          572 ext/soap/php_sdl.c 			if (tmp && !strncmp((char*)tmp->children->content, "literal", sizeof("literal"))) {
children          580 ext/soap/php_sdl.c 				binding->ns = estrdup((char*)tmp->children->content);
children          586 ext/soap/php_sdl.c 				char *parts = (char*)tmp->children->content;
children          627 ext/soap/php_sdl.c 					if (strncmp((char*)tmp->children->content, SOAP_1_1_ENC_NAMESPACE, sizeof(SOAP_1_1_ENC_NAMESPACE)) == 0) {
children          629 ext/soap/php_sdl.c 					} else if (strncmp((char*)tmp->children->content, SOAP_1_2_ENC_NAMESPACE, sizeof(SOAP_1_2_ENC_NAMESPACE)) == 0) {
children          632 ext/soap/php_sdl.c 						soap_error1(E_ERROR, "Parsing WSDL: Unknown encodingStyle '%s'", tmp->children->content);
children          684 ext/soap/php_sdl.c 	trav = message->children;
children          709 ext/soap/php_sdl.c 		param->paramName = estrdup((char*)name->children->content);
children          713 ext/soap/php_sdl.c 			param->encode = get_encoder_from_prefix(ctx->sdl, part, type->children->content);
children          717 ext/soap/php_sdl.c 				param->element = get_element(ctx->sdl, part, element->children->content);
children          762 ext/soap/php_sdl.c 			trav = service->children;
children          791 ext/soap/php_sdl.c 				trav2 = port->children;
children          835 ext/soap/php_sdl.c 				tmpbinding->location = estrdup((char*)location->children->content);
children          837 ext/soap/php_sdl.c 				ctype = strrchr((char*)bindingAttr->children->content,':');
children          839 ext/soap/php_sdl.c 					ctype = (char*)bindingAttr->children->content;
children          857 ext/soap/php_sdl.c 					soapBindingNode = get_node_ex(binding->children, "binding", wsdl_soap_namespace);
children          860 ext/soap/php_sdl.c 						if (tmp && !strncmp((char*)tmp->children->content, "rpc", sizeof("rpc"))) {
children          866 ext/soap/php_sdl.c 							if (strncmp((char*)tmp->children->content, WSDL_HTTP_TRANSPORT, sizeof(WSDL_HTTP_TRANSPORT)) == 0) {
children          885 ext/soap/php_sdl.c 				tmpbinding->name = estrdup((char*)name->children->content);
children          892 ext/soap/php_sdl.c 				ctype = strrchr((char*)type->children->content,':');
children          894 ext/soap/php_sdl.c 					ctype = (char*)type->children->content;
children          899 ext/soap/php_sdl.c 					soap_error1(E_ERROR, "Parsing WSDL: Missing <portType> with name '%s'", name->children->content);
children          903 ext/soap/php_sdl.c 				trav2 = binding->children;
children          927 ext/soap/php_sdl.c 					trav3 = operation->children;
children          941 ext/soap/php_sdl.c 					portTypeOperation = get_node_with_attribute_ex(portType->children, "operation", WSDL_NAMESPACE, "name", (char*)op_name->children->content, NULL);
children          943 ext/soap/php_sdl.c 						soap_error1(E_ERROR, "Parsing WSDL: Missing <portType>/<operation> with name '%s'", op_name->children->content);
children          948 ext/soap/php_sdl.c 					function->functionName = estrdup((char*)op_name->children->content);
children          961 ext/soap/php_sdl.c 						soapOperation = get_node_ex(operation->children, "operation", wsdl_soap_namespace);
children          965 ext/soap/php_sdl.c 								soapFunctionBinding->soapAction = estrdup((char*)tmp->children->content);
children          970 ext/soap/php_sdl.c 								if (!strncmp((char*)tmp->children->content, "rpc", sizeof("rpc"))) {
children          983 ext/soap/php_sdl.c 					input = get_node_ex(portTypeOperation->children, "input", WSDL_NAMESPACE);
children          989 ext/soap/php_sdl.c 							soap_error1(E_ERROR, "Parsing WSDL: Missing name for <input> of '%s'", op_name->children->content);
children          991 ext/soap/php_sdl.c 						function->requestParameters = wsdl_message(&ctx, message->children->content);
children         1004 ext/soap/php_sdl.c 							input = get_node_ex(operation->children, "input", WSDL_NAMESPACE);
children         1012 ext/soap/php_sdl.c 					output = get_node_ex(portTypeOperation->children, "output", WSDL_NAMESPACE);
children         1018 ext/soap/php_sdl.c 							soap_error1(E_ERROR, "Parsing WSDL: Missing name for <output> of '%s'", op_name->children->content);
children         1020 ext/soap/php_sdl.c 						function->responseParameters = wsdl_message(&ctx, message->children->content);
children         1038 ext/soap/php_sdl.c 							output = get_node_ex(operation->children, "output", WSDL_NAMESPACE);
children         1051 ext/soap/php_sdl.c 					fault = portTypeOperation->children;
children         1059 ext/soap/php_sdl.c 								soap_error1(E_ERROR, "Parsing WSDL: Missing name for <fault> of '%s'", op_name->children->content);
children         1063 ext/soap/php_sdl.c 								soap_error1(E_ERROR, "Parsing WSDL: Missing name for <output> of '%s'", op_name->children->content);
children         1069 ext/soap/php_sdl.c 							f->name = estrdup((char*)name->children->content);
children         1070 ext/soap/php_sdl.c 							f->details = wsdl_message(&ctx, message->children->content);
children         1072 ext/soap/php_sdl.c 								soap_error1(E_ERROR, "Parsing WSDL: The fault message '%s' must have a single part", message->children->content);
children         1076 ext/soap/php_sdl.c 								xmlNodePtr soap_fault = get_node_with_attribute_ex(operation->children, "fault", WSDL_NAMESPACE, "name", f->name, NULL);
children         1078 ext/soap/php_sdl.c 									xmlNodePtr trav = soap_fault->children;
children         1088 ext/soap/php_sdl.c 											if (tmp && !strncmp((char*)tmp->children->content, "encoded", sizeof("encoded"))) {
children         1096 ext/soap/php_sdl.c 												binding->ns = estrdup((char*)tmp->children->content);
children         1102 ext/soap/php_sdl.c 													if (strncmp((char*)tmp->children->content, SOAP_1_1_ENC_NAMESPACE, sizeof(SOAP_1_1_ENC_NAMESPACE)) == 0) {
children         1104 ext/soap/php_sdl.c 													} else if (strncmp((char*)tmp->children->content, SOAP_1_2_ENC_NAMESPACE, sizeof(SOAP_1_2_ENC_NAMESPACE)) == 0) {
children         1107 ext/soap/php_sdl.c 														soap_error1(E_ERROR, "Parsing WSDL: Unknown encodingStyle '%s'", tmp->children->content);
children         1125 ext/soap/php_sdl.c 								soap_error2(E_ERROR, "Parsing WSDL: <fault> with name '%s' already defined in '%s'", f->name, op_name->children->content);
children           47 ext/soap/php_xml.c 	trav = node->children;
children           61 ext/soap/php_xml.c 		} else if (trav->children != NULL) {
children          266 ext/soap/php_xml.c 		} else if (node->children != NULL) {
children          267 ext/soap/php_xml.c 			xmlNodePtr tmp = get_node_recurisve_ex(node->children, name, ns);
children          290 ext/soap/php_xml.c 		if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) {
children          303 ext/soap/php_xml.c 			if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) {
children          307 ext/soap/php_xml.c 		if (node->children != NULL) {
children          308 ext/soap/php_xml.c 			xmlNodePtr tmp = get_node_with_attribute_recursive_ex(node->children, name, name_ns, attribute, value, attr_ns);
children         1628 ext/soap/soap.c 		xmlNodePtr env = get_node(doc_request->children,"Envelope");
children         3435 ext/soap/soap.c 			if (func->children != NULL ||
children         3467 ext/soap/soap.c 	trav = request->children;
children         3497 ext/soap/soap.c 			} else if (strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
children         3506 ext/soap/soap.c 	trav = env->children;
children         3539 ext/soap/soap.c 			} else if (strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
children         3551 ext/soap/soap.c 	trav = body->children;
children         3575 ext/soap/soap.c 			if (attr && strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
children         3580 ext/soap/soap.c 			if (attr && strcmp((char*)attr->children->content,SOAP_1_2_ENC_NAMESPACE) != 0) {
children         3605 ext/soap/soap.c 				} else if (strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
children         3611 ext/soap/soap.c 		trav = head->children;
children         3619 ext/soap/soap.c 					if (attr && strcmp((char*)attr->children->content,SOAP_1_1_ENC_NAMESPACE) != 0) {
children         3624 ext/soap/soap.c 						if (strcmp((char*)attr->children->content,SOAP_1_1_ACTOR_NEXT) != 0 &&
children         3625 ext/soap/soap.c 						    (actor == NULL || strcmp((char*)attr->children->content,actor) != 0)) {
children         3631 ext/soap/soap.c 					if (attr && strcmp((char*)attr->children->content,SOAP_1_2_ENC_NAMESPACE) != 0) {
children         3636 ext/soap/soap.c 						if (strcmp((char*)attr->children->content,SOAP_1_2_ACTOR_UNLIMATERECEIVER) != 0 &&
children         3637 ext/soap/soap.c 						    strcmp((char*)attr->children->content,SOAP_1_2_ACTOR_NEXT) != 0 &&
children         3638 ext/soap/soap.c 						    (actor == NULL || strcmp((char*)attr->children->content,actor) != 0)) {
children         3645 ext/soap/soap.c 					if (strcmp((char*)attr->children->content,"1") == 0 ||
children         3646 ext/soap/soap.c 					    strcmp((char*)attr->children->content,"true") == 0) {
children         3648 ext/soap/soap.c 					} else if (strcmp((char*)attr->children->content,"0") == 0 ||
children         3649 ext/soap/soap.c 					           strcmp((char*)attr->children->content,"false") == 0) {
children         3685 ext/soap/soap.c 							hdr_func = hdr_func->children;
children         3706 ext/soap/soap.c 			func = func->children;
children         3709 ext/soap/soap.c 		func = func->children;
children         4191 ext/soap/soap.c 			if (head->children == NULL) {
children         4218 ext/soap/soap.c 	    body->children == NULL && head == NULL) {
children          851 ext/tidy/tidy.c 	zval *attribute, *children, *temp;
children          903 ext/tidy/tidy.c 			MAKE_STD_ZVAL(children);
children          905 ext/tidy/tidy.c 				array_init(children);
children          916 ext/tidy/tidy.c 					add_next_index_zval(children, temp);
children          921 ext/tidy/tidy.c 				ZVAL_NULL(children);
children          924 ext/tidy/tidy.c 			zend_hash_update(obj->std.properties, "child", sizeof("child"), (void *)&children, sizeof(zval *), NULL);
children          207 ext/xmlrpc/libxmlrpc/xml_element.c       Q_Destroy(&root->children);
children          238 ext/xmlrpc/libxmlrpc/xml_element.c       xml_element* kids = Q_Head(&root->children);
children          241 ext/xmlrpc/libxmlrpc/xml_element.c          kids = Q_Next(&root->children);
children          268 ext/xmlrpc/libxmlrpc/xml_element.c       Q_Init(&elem->children);
children          439 ext/xmlrpc/libxmlrpc/xml_element.c    if(!el->text.len && !Q_Size(&el->children)) {
children          474 ext/xmlrpc/libxmlrpc/xml_element.c           xml_element *kids = Q_Head(&el->children);
children          483 ext/xmlrpc/libxmlrpc/xml_element.c              kids = Q_Next(&el->children);
children          628 ext/xmlrpc/libxmlrpc/xml_element.c       Q_PushTail(&mydata->current->parent->children, mydata->current);
children          754 ext/xmlrpc/libxmlrpc/xml_element.c          xReturn = (xml_element*)Q_Head(&mydata.root->children);
children          155 ext/xmlrpc/libxmlrpc/xml_element.h    queue        children;        /* child element list */
children          185 ext/xmlrpc/libxmlrpc/xml_element.h #define xml_elem_next_element(el) ((el) ? (xml_element *)Q_Next(&el->children) : NULL)
children          186 ext/xmlrpc/libxmlrpc/xml_element.h #define xml_elem_head_element(el) ((el) ? (xml_element *)Q_Head(&el->children) : NULL)
children          113 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c          xml_element* iter = (xml_element*)Q_Head(&el->children);
children          128 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c             iter = (xml_element*)Q_Next(&el->children);
children          132 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c          xml_element* iter = (xml_element*)Q_Head(&el->children);
children          135 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c             iter = (xml_element*)Q_Next(&el->children);
children          258 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c                      Q_PushTail(&elem_val->children, next_el);
children          304 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c       Q_PushTail(&root->children, wrapper);
children          312 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c          Q_PushTail(&wrapper->children, method);
children          314 ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c       Q_PushTail(&wrapper->children, 
children          341 ext/xmlrpc/libxmlrpc/xml_to_soap.c 		if (!Q_Size(&el->children)) {
children          374 ext/xmlrpc/libxmlrpc/xml_to_soap.c 			xml_element* iter = (xml_element*)Q_Head(&el->children);
children          406 ext/xmlrpc/libxmlrpc/xml_to_soap.c 				iter = (xml_element*)Q_Next(&el->children);
children          487 ext/xmlrpc/libxmlrpc/xml_to_soap.c 						Q_PushTail(&elem_val->children, next_el);
children          610 ext/xmlrpc/libxmlrpc/xml_to_soap.c 				Q_PushTail(&body->children, el_serialized);
children          642 ext/xmlrpc/libxmlrpc/xml_to_soap.c 							if(Q_Size(&el_serialized->children) && rtype == xmlrpc_request_call) {
children          643 ext/xmlrpc/libxmlrpc/xml_to_soap.c 								xml_element* iter = (xml_element*)Q_Head(&el_serialized->children);
children          645 ext/xmlrpc/libxmlrpc/xml_to_soap.c 									Q_PushTail(&rpc->children, iter);
children          646 ext/xmlrpc/libxmlrpc/xml_to_soap.c 									iter = (xml_element*)Q_Next(&el_serialized->children);
children          651 ext/xmlrpc/libxmlrpc/xml_to_soap.c 								Q_PushTail(&rpc->children, el_serialized);
children          655 ext/xmlrpc/libxmlrpc/xml_to_soap.c 						Q_PushTail(&body->children, rpc);
children          664 ext/xmlrpc/libxmlrpc/xml_to_soap.c 			Q_PushTail(&root->children, body);
children           80 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c 			xml_element* fault_value = (xml_element*)Q_Head(&el->children);
children           84 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             xml_element* fault_struct = (xml_element*)Q_Head(&fault_value->children);
children           86 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c                xml_element* iter = (xml_element*)Q_Head(&fault_struct->children);
children           92 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c                   iter = (xml_element*)Q_Next(&fault_struct->children);
children          100 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          xml_element* iter = (xml_element*)Q_Head(&el->children);
children          107 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             iter = (xml_element*)Q_Next(&el->children);
children          111 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          xml_element* iter = (xml_element*)Q_Head(&el->children);
children          118 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             iter = (xml_element*)Q_Next(&el->children);
children          122 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c                  (!strcmp(el->name, ELEM_VALUE) && Q_Size(&el->children) == 0)) {
children          165 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          iter = (xml_element*)Q_Head(&el->children);
children          169 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             iter = (xml_element*)Q_Next(&el->children);
children          208 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             Q_PushTail(&elem_val->children, next_el);
children          275 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c                          Q_PushTail(&elem_val->children, data);
children          292 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c                      Q_PushTail(&root_vector_elem->children, next_el);
children          318 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c                Q_PushTail(&param->children, value);
children          322 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             Q_PushTail(&value->children, elem_val);
children          335 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             Q_PushTail(&member->children, name);
children          336 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             Q_PushTail(&member->children, value);
children          337 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             Q_PushTail(&value->children, elem_val);
children          346 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             Q_PushTail(&value->children, elem_val);
children          359 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c             Q_PushTail(&value->children, elem_val);
children          398 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          Q_PushTail(&wrapper->children, method);
children          402 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          Q_PushTail(&wrapper->children, 
children          409 ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c          Q_PushTail(&wrapper->children, params);
children          351 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c             if(Q_Size(&el->children) &&
children          356 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c                   xml_element* elem_iter = Q_Head(&el->children);
children          360 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c                      elem_iter = Q_Next(&el->children);
children          372 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c          if(Q_Size(&el->children)) {
children          373 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c             xml_element* elem_iter = Q_Head(&el->children);
children          380 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c                elem_iter = Q_Next(&el->children);
children          387 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c          xml_element* elem_iter = Q_Head(&el->children);
children          395 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c             elem_iter = Q_Next(&el->children);
children          405 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c       else if(Q_Size(&el->children)) {
children          406 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c          xml_element* elem_iter = Q_Head(&el->children);
children          412 ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c             elem_iter = Q_Next(&el->children);
children          277 ext/xsl/xsltprocessor.c 								if (node->children) {
children          278 ext/xsl/xsltprocessor.c 									curns->prefix = xmlStrdup((char *) node->children);
children          280 ext/xsl/xsltprocessor.c 								if (node->children) {
children          281 ext/xsl/xsltprocessor.c 									node = xmlNewDocNode(node->doc, NULL, (char *) node->children, node->name);
children          461 ext/xsl/xsltprocessor.c 		if (nodep && (nodep = nodep->children)) {
children          107 sapi/cgi/cgi_main.c static int children = 0;
children         2003 sapi/cgi/cgi_main.c 		children = atoi(children_str);
children         2004 sapi/cgi/cgi_main.c 		if (children < 0) {
children         2016 sapi/cgi/cgi_main.c 	if (children) {
children         2070 sapi/cgi/cgi_main.c 			} while (parent && (running < children));
children           96 sapi/fpm/fpm/fpm_children.c 	child->next = wp->children;
children          101 sapi/fpm/fpm/fpm_children.c 	wp->children = child;
children          113 sapi/fpm/fpm/fpm_children.c 		child->wp->children = child->next;
children          129 sapi/fpm/fpm/fpm_children.c 		for (child = wp->children; child; child = child->next) {
children          154 sapi/fpm/fpm/fpm_process_ctl.c 		for (child = wp->children; child; child = child->next) {
children          302 sapi/fpm/fpm/fpm_process_ctl.c 			for (child = wp->children; child; child = child->next) {
children          324 sapi/fpm/fpm/fpm_process_ctl.c 		for (child = wp->children; child; child = child->next) {
children          522 sapi/fpm/fpm/fpm_process_ctl.c 	for (child = wp->children; child; child = child->next) {
children           45 sapi/fpm/fpm/fpm_worker_pool.c 		fpm_children_free(wp->children);
children           31 sapi/fpm/fpm/fpm_worker_pool.h 	struct fpm_child_s *children;
children          946 sapi/litespeed/lsapi_main.c void start_children( int children )
children          968 sapi/litespeed/lsapi_main.c         while((!s_stop )&&( running < children )) {
children          157 sapi/phpdbg/phpdbg_cmd.h #define PHPDBG_COMMAND_D_EXP(name, tip, alias, handler, children, args, parent) \
children          158 sapi/phpdbg/phpdbg_cmd.h 	{PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, parent}
children          160 sapi/phpdbg/phpdbg_cmd.h #define PHPDBG_COMMAND_D_EX(name, tip, alias, handler, children, args) \
children          161 sapi/phpdbg/phpdbg_cmd.h 	{PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##handler, children, args, NULL}
children          163 sapi/phpdbg/phpdbg_cmd.h #define PHPDBG_COMMAND_D(name, tip, alias, children, args) \
children          164 sapi/phpdbg/phpdbg_cmd.h 	{PHPDBG_STRL(#name), tip, sizeof(tip)-1, alias, phpdbg_do_##name, children, args, NULL}