newAttr            49 ext/dom/element.c 	ZEND_ARG_OBJ_INFO(0, newAttr, DOMAttr, 0)
newAttr            82 ext/dom/element.c 	ZEND_ARG_OBJ_INFO(0, newAttr, DOMAttr, 0)
newAttr          1732 ext/soap/php_schema.c 	sdlAttributePtr newAttr;
newAttr          1744 ext/soap/php_schema.c 		newAttr = emalloc(sizeof(sdlAttribute));
newAttr          1745 ext/soap/php_schema.c 		memset(newAttr, 0, sizeof(sdlAttribute));
newAttr          1755 ext/soap/php_schema.c 				newAttr->namens = estrdup((char*)nsptr->href);
newAttr          1768 ext/soap/php_schema.c 			newAttr->ref = estrndup(ZSTR_VAL(key.s), ZSTR_LEN(key.s));
newAttr          1781 ext/soap/php_schema.c 				newAttr->namens = estrdup((char*)ns->children->content);
newAttr          1797 ext/soap/php_schema.c 		if (zend_hash_add_ptr(addHash, key.s, newAttr) == NULL) {
newAttr          1817 ext/soap/php_schema.c 			newAttr->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(cptype));
newAttr          1826 ext/soap/php_schema.c 			newAttr->def = estrdup((char*)attr->children->content);
newAttr          1828 ext/soap/php_schema.c 			newAttr->fixed = estrdup((char*)attr->children->content);
newAttr          1831 ext/soap/php_schema.c 			  newAttr->form = XSD_FORM_QUALIFIED;
newAttr          1833 ext/soap/php_schema.c 			  newAttr->form = XSD_FORM_UNQUALIFIED;
newAttr          1835 ext/soap/php_schema.c 			  newAttr->form = XSD_FORM_DEFAULT;
newAttr          1840 ext/soap/php_schema.c 			newAttr->name = estrdup((char*)attr->children->content);
newAttr          1847 ext/soap/php_schema.c 			  newAttr->use = XSD_USE_PROHIBITED;
newAttr          1849 ext/soap/php_schema.c 			  newAttr->use = XSD_USE_REQUIRED;
newAttr          1851 ext/soap/php_schema.c 			  newAttr->use = XSD_USE_OPTIONAL;
newAttr          1853 ext/soap/php_schema.c 			  newAttr->use = XSD_USE_DEFAULT;
newAttr          1877 ext/soap/php_schema.c 				if (!newAttr->extraAttributes) {
newAttr          1878 ext/soap/php_schema.c 					newAttr->extraAttributes = emalloc(sizeof(HashTable));
newAttr          1879 ext/soap/php_schema.c 					zend_hash_init(newAttr->extraAttributes, 0, NULL, delete_extra_attribute, 0);
newAttr          1886 ext/soap/php_schema.c 				zend_hash_add_ptr(newAttr->extraAttributes, key2.s, ext);
newAttr          1892 ext/soap/php_schema.c 	if (newAttr->form == XSD_FORM_DEFAULT) {
newAttr          1899 ext/soap/php_schema.c 					newAttr->form = XSD_FORM_UNQUALIFIED;
newAttr          1901 ext/soap/php_schema.c 					newAttr->form = XSD_FORM_QUALIFIED;
newAttr          1908 ext/soap/php_schema.c 			newAttr->form = XSD_FORM_UNQUALIFIED;
newAttr          1939 ext/soap/php_schema.c 			newAttr->encode = dummy_type->encode;
newAttr          1987 ext/soap/php_schema.c 			sdlAttributePtr newAttr;
newAttr          1996 ext/soap/php_schema.c 			newAttr = emalloc(sizeof(sdlAttribute));
newAttr          1997 ext/soap/php_schema.c 			memset(newAttr, 0, sizeof(sdlAttribute));
newAttr          2007 ext/soap/php_schema.c 			newAttr->ref = estrndup(ZSTR_VAL(key.s), ZSTR_LEN(key.s));
newAttr          2012 ext/soap/php_schema.c 			zend_hash_next_index_insert_ptr(cur_type->attributes, newAttr);
newAttr          2147 ext/soap/php_schema.c 							sdlAttributePtr newAttr;
newAttr          2151 ext/soap/php_schema.c 							newAttr = emalloc(sizeof(sdlAttribute));
newAttr          2152 ext/soap/php_schema.c 							memcpy(newAttr, tmp_attr, sizeof(sdlAttribute));
newAttr          2153 ext/soap/php_schema.c 							if (newAttr->def) {newAttr->def = estrdup(newAttr->def);}
newAttr          2154 ext/soap/php_schema.c 							if (newAttr->fixed) {newAttr->fixed = estrdup(newAttr->fixed);}
newAttr          2155 ext/soap/php_schema.c 							if (newAttr->namens) {newAttr->namens = estrdup(newAttr->namens);}
newAttr          2156 ext/soap/php_schema.c 							if (newAttr->name) {newAttr->name = estrdup(newAttr->name);}
newAttr          2157 ext/soap/php_schema.c 							if (newAttr->extraAttributes) {
newAttr          2159 ext/soap/php_schema.c 								zend_hash_init(ht, zend_hash_num_elements(newAttr->extraAttributes), NULL, delete_extra_attribute, 0);
newAttr          2160 ext/soap/php_schema.c 								zend_hash_copy(ht, newAttr->extraAttributes, copy_extra_attribute);
newAttr          2161 ext/soap/php_schema.c 								newAttr->extraAttributes = ht;
newAttr          2165 ext/soap/php_schema.c 							zend_hash_add_ptr(ht, _key, newAttr);