cur_type         3626 ext/soap/php_encoding.c 	int i, count, cur_type, prev_type, different;
cur_type         3636 ext/soap/php_encoding.c 	cur_type = prev_type = 0;
cur_type         3652 ext/soap/php_encoding.c 			cur_type = Z_LVAL_PP(ztype);
cur_type         3669 ext/soap/php_encoding.c 			cur_type = APACHE_MAP;
cur_type         3673 ext/soap/php_encoding.c 			cur_type = Z_TYPE_PP(tmp);
cur_type         3679 ext/soap/php_encoding.c 			if ((cur_type != prev_type) ||
cur_type         3689 ext/soap/php_encoding.c 		prev_type = cur_type;
cur_type         3721 ext/soap/php_encoding.c 			enc = get_conversion(cur_type);
cur_type           25 ext/soap/php_schema.c static int schema_simpleType(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr simpleType, sdlTypePtr cur_type);
cur_type           26 ext/soap/php_schema.c static int schema_complexType(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr compType, sdlTypePtr cur_type);
cur_type           27 ext/soap/php_schema.c static int schema_list(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr listType, sdlTypePtr cur_type);
cur_type           28 ext/soap/php_schema.c static int schema_union(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr unionType, sdlTypePtr cur_type);
cur_type           29 ext/soap/php_schema.c static int schema_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr simpCompType, sdlTypePtr cur_type);
cur_type           30 ext/soap/php_schema.c static int schema_restriction_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr restType, sdlTypePtr cur_type, int simpleType);
cur_type           31 ext/soap/php_schema.c static int schema_restriction_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr restType, sdlTypePtr cur_type);
cur_type           32 ext/soap/php_schema.c static int schema_extension_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type);
cur_type           33 ext/soap/php_schema.c static int schema_extension_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type);
cur_type           34 ext/soap/php_schema.c static int schema_sequence(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr seqType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           35 ext/soap/php_schema.c static int schema_all(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           36 ext/soap/php_schema.c static int schema_choice(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr choiceType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           37 ext/soap/php_schema.c static int schema_group(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr groupType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           38 ext/soap/php_schema.c static int schema_any(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           39 ext/soap/php_schema.c static int schema_element(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr element, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           40 ext/soap/php_schema.c static int schema_attribute(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr attrType, sdlTypePtr cur_type, sdlCtx *ctx);
cur_type           41 ext/soap/php_schema.c static int schema_attributeGroup(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr attrType, sdlTypePtr cur_type, sdlCtx *ctx);
cur_type           49 ext/soap/php_schema.c static encodePtr create_encoder(sdlPtr sdl, sdlTypePtr cur_type, const xmlChar *ns, const xmlChar *type)
cur_type           78 ext/soap/php_schema.c 	enc->details.sdl_type = cur_type;
cur_type           89 ext/soap/php_schema.c static encodePtr get_create_encoder(sdlPtr sdl, sdlTypePtr cur_type, const xmlChar *ns, const xmlChar *type)
cur_type           93 ext/soap/php_schema.c 		enc = create_encoder(sdl, cur_type, ns, type);
cur_type          305 ext/soap/php_schema.c static int schema_simpleType(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr simpleType, sdlTypePtr cur_type)
cur_type          316 ext/soap/php_schema.c 	if (cur_type != NULL) {
cur_type          327 ext/soap/php_schema.c 			newType->name = estrdup(cur_type->name);
cur_type          328 ext/soap/php_schema.c 			newType->namens = estrdup(cur_type->namens);
cur_type          337 ext/soap/php_schema.c 		cur_type->encode = emalloc(sizeof(encode));
cur_type          338 ext/soap/php_schema.c 		memset(cur_type->encode, 0, sizeof(encode));
cur_type          339 ext/soap/php_schema.c 		cur_type->encode->details.ns = estrdup(newType->namens);
cur_type          340 ext/soap/php_schema.c 		cur_type->encode->details.type_str = estrdup(newType->name);
cur_type          341 ext/soap/php_schema.c 		cur_type->encode->details.sdl_type = *ptr;
cur_type          342 ext/soap/php_schema.c 		cur_type->encode->to_xml = sdl_guess_convert_xml;
cur_type          343 ext/soap/php_schema.c 		cur_type->encode->to_zval = sdl_guess_convert_zval;
cur_type          344 ext/soap/php_schema.c 		zend_hash_next_index_insert(sdl->encoders,  &cur_type->encode, sizeof(encodePtr), NULL);
cur_type          346 ext/soap/php_schema.c 		cur_type =*ptr;
cur_type          357 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type          360 ext/soap/php_schema.c 			if (cur_type->elements == NULL) {
cur_type          361 ext/soap/php_schema.c 				cur_type->elements = emalloc(sizeof(HashTable));
cur_type          362 ext/soap/php_schema.c 				zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          364 ext/soap/php_schema.c 			zend_hash_update(cur_type->elements, newType->name, strlen(newType->name)+1, &newType, sizeof(sdlTypePtr), (void **)&ptr);
cur_type          366 ext/soap/php_schema.c 		cur_type = (*ptr);
cur_type          368 ext/soap/php_schema.c 		create_encoder(sdl, cur_type, ns->children->content, name->children->content);
cur_type          380 ext/soap/php_schema.c 			schema_restriction_simpleContent(sdl, tns, trav, cur_type, 1);
cur_type          383 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_LIST;
cur_type          384 ext/soap/php_schema.c 			schema_list(sdl, tns, trav, cur_type);
cur_type          387 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_UNION;
cur_type          388 ext/soap/php_schema.c 			schema_union(sdl, tns, trav, cur_type);
cur_type          411 ext/soap/php_schema.c static int schema_list(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr listType, sdlTypePtr cur_type)
cur_type          434 ext/soap/php_schema.c 			if (cur_type->elements == NULL) {
cur_type          435 ext/soap/php_schema.c 				cur_type->elements = emalloc(sizeof(HashTable));
cur_type          436 ext/soap/php_schema.c 				zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          438 ext/soap/php_schema.c 			zend_hash_next_index_insert(cur_type->elements, &newType, sizeof(sdlTypePtr), (void **)&tmp);
cur_type          469 ext/soap/php_schema.c 		if (cur_type->elements == NULL) {
cur_type          470 ext/soap/php_schema.c 			cur_type->elements = emalloc(sizeof(HashTable));
cur_type          471 ext/soap/php_schema.c 			zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          473 ext/soap/php_schema.c 		zend_hash_next_index_insert(cur_type->elements, &newType, sizeof(sdlTypePtr), (void **)&tmp);
cur_type          493 ext/soap/php_schema.c static int schema_union(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr unionType, sdlTypePtr cur_type)
cur_type          529 ext/soap/php_schema.c 				if (cur_type->elements == NULL) {
cur_type          530 ext/soap/php_schema.c 					cur_type->elements = emalloc(sizeof(HashTable));
cur_type          531 ext/soap/php_schema.c 					zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          533 ext/soap/php_schema.c 				zend_hash_next_index_insert(cur_type->elements, &newType, sizeof(sdlTypePtr), (void **)&tmp);
cur_type          565 ext/soap/php_schema.c 			if (cur_type->elements == NULL) {
cur_type          566 ext/soap/php_schema.c 				cur_type->elements = emalloc(sizeof(HashTable));
cur_type          567 ext/soap/php_schema.c 				zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          569 ext/soap/php_schema.c 			zend_hash_next_index_insert(cur_type->elements, &newType, sizeof(sdlTypePtr), (void **)&tmp);
cur_type          591 ext/soap/php_schema.c static int schema_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr simpCompType, sdlTypePtr cur_type)
cur_type          602 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_RESTRICTION;
cur_type          603 ext/soap/php_schema.c 			schema_restriction_simpleContent(sdl, tns, trav, cur_type, 0);
cur_type          606 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_EXTENSION;
cur_type          607 ext/soap/php_schema.c 			schema_extension_simpleContent(sdl, tns, trav, cur_type);
cur_type          636 ext/soap/php_schema.c static int schema_restriction_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr restType, sdlTypePtr cur_type, int simpleType)
cur_type          649 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(type));
cur_type          657 ext/soap/php_schema.c 	if (cur_type->restrictions == NULL) {
cur_type          658 ext/soap/php_schema.c 		cur_type->restrictions = emalloc(sizeof(sdlRestrictions));
cur_type          659 ext/soap/php_schema.c 		memset(cur_type->restrictions, 0, sizeof(sdlRestrictions));
cur_type          668 ext/soap/php_schema.c 		schema_simpleType(sdl, tns, trav, cur_type);
cur_type          673 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->minExclusive);
cur_type          675 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->minInclusive);
cur_type          677 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->maxExclusive);
cur_type          679 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->maxInclusive);
cur_type          681 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->totalDigits);
cur_type          683 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->fractionDigits);
cur_type          685 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->length);
cur_type          687 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->minLength);
cur_type          689 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->maxLength);
cur_type          691 ext/soap/php_schema.c 			schema_restriction_var_char(trav, &cur_type->restrictions->whiteSpace);
cur_type          693 ext/soap/php_schema.c 			schema_restriction_var_char(trav, &cur_type->restrictions->pattern);
cur_type          698 ext/soap/php_schema.c 			if (cur_type->restrictions->enumeration == NULL) {
cur_type          699 ext/soap/php_schema.c 				cur_type->restrictions->enumeration = emalloc(sizeof(HashTable));
cur_type          700 ext/soap/php_schema.c 				zend_hash_init(cur_type->restrictions->enumeration, 0, NULL, delete_restriction_var_char, 0);
cur_type          702 ext/soap/php_schema.c 			if (zend_hash_add(cur_type->restrictions->enumeration, enumval->value, strlen(enumval->value)+1, &enumval, sizeof(sdlRestrictionCharPtr), NULL) == FAILURE) {
cur_type          713 ext/soap/php_schema.c 				schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type          715 ext/soap/php_schema.c 				schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type          741 ext/soap/php_schema.c static int schema_restriction_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr restType, sdlTypePtr cur_type)
cur_type          754 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(type));
cur_type          769 ext/soap/php_schema.c 			schema_group(sdl, tns, trav, cur_type, NULL);
cur_type          772 ext/soap/php_schema.c 			schema_all(sdl, tns, trav, cur_type, NULL);
cur_type          775 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, NULL);
cur_type          778 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, NULL);
cur_type          784 ext/soap/php_schema.c 			schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type          786 ext/soap/php_schema.c 			schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type          866 ext/soap/php_schema.c static int schema_extension_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type)
cur_type          879 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(type));
cur_type          894 ext/soap/php_schema.c 			schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type          896 ext/soap/php_schema.c 			schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type          921 ext/soap/php_schema.c static int schema_extension_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type)
cur_type          934 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(type));
cur_type          949 ext/soap/php_schema.c 			schema_group(sdl, tns, trav, cur_type, NULL);
cur_type          952 ext/soap/php_schema.c 			schema_all(sdl, tns, trav, cur_type, NULL);
cur_type          955 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, NULL);
cur_type          958 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, NULL);
cur_type          964 ext/soap/php_schema.c 			schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type          966 ext/soap/php_schema.c 			schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type         1013 ext/soap/php_schema.c static int schema_all(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr all, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1023 ext/soap/php_schema.c 		cur_type->model = newModel;
cur_type         1037 ext/soap/php_schema.c 			schema_element(sdl, tns, trav, cur_type, newModel);
cur_type         1057 ext/soap/php_schema.c static int schema_group(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr groupType, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1115 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type         1129 ext/soap/php_schema.c 			cur_type = newType;
cur_type         1134 ext/soap/php_schema.c 			cur_type->model = newModel;
cur_type         1155 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, newModel);
cur_type         1162 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, newModel);
cur_type         1169 ext/soap/php_schema.c 			schema_all(sdl, tns, trav, cur_type, newModel);
cur_type         1189 ext/soap/php_schema.c static int schema_choice(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr choiceType, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1199 ext/soap/php_schema.c 		cur_type->model = newModel;
cur_type         1213 ext/soap/php_schema.c 			schema_element(sdl, tns, trav, cur_type, newModel);
cur_type         1215 ext/soap/php_schema.c 			schema_group(sdl, tns, trav, cur_type, newModel);
cur_type         1217 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, newModel);
cur_type         1219 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, newModel);
cur_type         1221 ext/soap/php_schema.c 			schema_any(sdl, tns, trav, cur_type, newModel);
cur_type         1239 ext/soap/php_schema.c static int schema_sequence(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr seqType, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1249 ext/soap/php_schema.c 		cur_type->model = newModel;
cur_type         1263 ext/soap/php_schema.c 			schema_element(sdl, tns, trav, cur_type, newModel);
cur_type         1265 ext/soap/php_schema.c 			schema_group(sdl, tns, trav, cur_type, newModel);
cur_type         1267 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, newModel);
cur_type         1269 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, newModel);
cur_type         1271 ext/soap/php_schema.c 			schema_any(sdl, tns, trav, cur_type, newModel);
cur_type         1291 ext/soap/php_schema.c static int schema_any(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr anyType, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1314 ext/soap/php_schema.c static int schema_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr compCont, sdlTypePtr cur_type)
cur_type         1325 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_RESTRICTION;
cur_type         1326 ext/soap/php_schema.c 			schema_restriction_complexContent(sdl, tns, trav, cur_type);
cur_type         1329 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_EXTENSION;
cur_type         1330 ext/soap/php_schema.c 			schema_extension_complexContent(sdl, tns, trav, cur_type);
cur_type         1357 ext/soap/php_schema.c static int schema_complexType(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr compType, sdlTypePtr cur_type)
cur_type         1369 ext/soap/php_schema.c 	if (cur_type != NULL) {
cur_type         1380 ext/soap/php_schema.c 			newType->name = estrdup(cur_type->name);
cur_type         1381 ext/soap/php_schema.c 			newType->namens = estrdup(cur_type->namens);
cur_type         1390 ext/soap/php_schema.c 		cur_type->encode = emalloc(sizeof(encode));
cur_type         1391 ext/soap/php_schema.c 		memset(cur_type->encode, 0, sizeof(encode));
cur_type         1392 ext/soap/php_schema.c 		cur_type->encode->details.ns = estrdup(newType->namens);
cur_type         1393 ext/soap/php_schema.c 		cur_type->encode->details.type_str = estrdup(newType->name);
cur_type         1394 ext/soap/php_schema.c 		cur_type->encode->details.sdl_type = *ptr;
cur_type         1395 ext/soap/php_schema.c 		cur_type->encode->to_xml = sdl_guess_convert_xml;
cur_type         1396 ext/soap/php_schema.c 		cur_type->encode->to_zval = sdl_guess_convert_zval;
cur_type         1397 ext/soap/php_schema.c 		zend_hash_next_index_insert(sdl->encoders,  &cur_type->encode, sizeof(encodePtr), NULL);
cur_type         1399 ext/soap/php_schema.c 		cur_type =*ptr;
cur_type         1412 ext/soap/php_schema.c 		cur_type = (*ptr);
cur_type         1413 ext/soap/php_schema.c 		create_encoder(sdl, cur_type, ns->children->content, name->children->content);
cur_type         1426 ext/soap/php_schema.c 			schema_simpleContent(sdl, tns, trav, cur_type);
cur_type         1429 ext/soap/php_schema.c 			schema_complexContent(sdl, tns, trav, cur_type);
cur_type         1433 ext/soap/php_schema.c 				schema_group(sdl, tns, trav, cur_type, NULL);
cur_type         1436 ext/soap/php_schema.c 				schema_all(sdl, tns, trav, cur_type, NULL);
cur_type         1439 ext/soap/php_schema.c 				schema_choice(sdl, tns, trav, cur_type, NULL);
cur_type         1442 ext/soap/php_schema.c 				schema_sequence(sdl, tns, trav, cur_type, NULL);
cur_type         1447 ext/soap/php_schema.c 					schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type         1449 ext/soap/php_schema.c 					schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type         1486 ext/soap/php_schema.c static int schema_element(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr element, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1544 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type         1554 ext/soap/php_schema.c 			if (cur_type->elements == NULL) {
cur_type         1555 ext/soap/php_schema.c 				cur_type->elements = emalloc(sizeof(HashTable));
cur_type         1556 ext/soap/php_schema.c 				zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type         1558 ext/soap/php_schema.c 			addHash = cur_type->elements;
cur_type         1564 ext/soap/php_schema.c 			if (cur_type == NULL) {
cur_type         1583 ext/soap/php_schema.c 		cur_type = newType;
cur_type         1597 ext/soap/php_schema.c 			cur_type->nillable = TRUE;
cur_type         1599 ext/soap/php_schema.c 			cur_type->nillable = FALSE;
cur_type         1602 ext/soap/php_schema.c 		cur_type->nillable = FALSE;
cur_type         1610 ext/soap/php_schema.c 		cur_type->fixed = estrdup((char*)attr->children->content);
cur_type         1620 ext/soap/php_schema.c 		cur_type->def = estrdup((char*)attr->children->content);
cur_type         1627 ext/soap/php_schema.c 		  cur_type->form = XSD_FORM_QUALIFIED;
cur_type         1629 ext/soap/php_schema.c 		  cur_type->form = XSD_FORM_UNQUALIFIED;
cur_type         1631 ext/soap/php_schema.c 		  cur_type->form = XSD_FORM_DEFAULT;
cur_type         1634 ext/soap/php_schema.c 	  cur_type->form = XSD_FORM_DEFAULT;
cur_type         1636 ext/soap/php_schema.c 	if (cur_type->form == XSD_FORM_DEFAULT) {
cur_type         1643 ext/soap/php_schema.c 					cur_type->form = XSD_FORM_UNQUALIFIED;
cur_type         1645 ext/soap/php_schema.c 					cur_type->form = XSD_FORM_QUALIFIED;
cur_type         1652 ext/soap/php_schema.c 			cur_type->form = XSD_FORM_UNQUALIFIED;
cur_type         1668 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(cptype));
cur_type         1686 ext/soap/php_schema.c 			schema_simpleType(sdl, tns, trav, cur_type);
cur_type         1694 ext/soap/php_schema.c 			schema_complexType(sdl, tns, trav, cur_type);
cur_type         1728 ext/soap/php_schema.c static int schema_attribute(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr attrType, sdlTypePtr cur_type, sdlCtx *ctx)
cur_type         1785 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type         1788 ext/soap/php_schema.c 			if (cur_type->attributes == NULL) {
cur_type         1789 ext/soap/php_schema.c 				cur_type->attributes = emalloc(sizeof(HashTable));
cur_type         1790 ext/soap/php_schema.c 				zend_hash_init(cur_type->attributes, 0, NULL, delete_attribute, 0);
cur_type         1792 ext/soap/php_schema.c 			addHash = cur_type->attributes;
cur_type         1815 ext/soap/php_schema.c 			newAttr->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(cptype));
cur_type         1945 ext/soap/php_schema.c static int schema_attributeGroup(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr attrGroup, sdlTypePtr cur_type, sdlCtx *ctx)
cur_type         1956 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type         1978 ext/soap/php_schema.c 			cur_type = newType;
cur_type         1986 ext/soap/php_schema.c 			if (cur_type->attributes == NULL) {
cur_type         1987 ext/soap/php_schema.c 				cur_type->attributes = emalloc(sizeof(HashTable));
cur_type         1988 ext/soap/php_schema.c 				zend_hash_init(cur_type->attributes, 0, NULL, delete_attribute, 0);
cur_type         2006 ext/soap/php_schema.c 			zend_hash_next_index_insert(cur_type->attributes, &newAttr, sizeof(sdlAttributePtr), NULL);
cur_type         2007 ext/soap/php_schema.c 			cur_type = NULL;
cur_type         2023 ext/soap/php_schema.c 			schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type         2028 ext/soap/php_schema.c 			schema_attributeGroup(sdl, tns, trav, cur_type, NULL);