ele_value          65 ext/intl/dateformat/dateformat_format.c 	zval	*ele_value	= NULL;
ele_value          73 ext/intl/dateformat/dateformat_format.c 	if ((ele_value = zend_hash_str_find(hash_arr, key_name, strlen(key_name))) != NULL) {
ele_value          74 ext/intl/dateformat/dateformat_format.c 		if(Z_TYPE_P(ele_value) != IS_LONG) {
ele_value          80 ext/intl/dateformat/dateformat_format.c 			if (Z_LVAL_P(ele_value) > INT32_MAX ||
ele_value          81 ext/intl/dateformat/dateformat_format.c 					Z_LVAL_P(ele_value) < INT32_MIN) {
ele_value          84 ext/intl/dateformat/dateformat_format.c 						Z_LVAL_P(ele_value), key_name);
ele_value          88 ext/intl/dateformat/dateformat_format.c 				result = Z_LVAL_P(ele_value);
ele_value         774 ext/intl/locale/locale_methods.c 	zval *ele_value;
ele_value         776 ext/intl/locale/locale_methods.c 	if ((ele_value = zend_hash_str_find(hash_arr , key_name, strlen(key_name))) != NULL ) {
ele_value         777 ext/intl/locale/locale_methods.c 		if(Z_TYPE_P(ele_value)!= IS_STRING ){
ele_value         786 ext/intl/locale/locale_methods.c 		smart_str_appendl(loc_name, Z_STRVAL_P(ele_value) , Z_STRLEN_P(ele_value));
ele_value         815 ext/intl/locale/locale_methods.c 	zval	*ele_value;
ele_value         821 ext/intl/locale/locale_methods.c 	if ((ele_value = zend_hash_str_find( hash_arr , key_name , strlen(key_name))) != NULL) {
ele_value         822 ext/intl/locale/locale_methods.c 		if( Z_TYPE_P(ele_value) == IS_STRING ){
ele_value         826 ext/intl/locale/locale_methods.c 			smart_str_appendl(loc_name, Z_STRVAL_P(ele_value) , Z_STRLEN_P(ele_value));
ele_value         828 ext/intl/locale/locale_methods.c 		} else if(Z_TYPE_P(ele_value) == IS_ARRAY ) {
ele_value         829 ext/intl/locale/locale_methods.c 			HashTable *arr = Z_ARRVAL_P(ele_value);
ele_value         863 ext/intl/locale/locale_methods.c 			if ((ele_value = zend_hash_str_find( hash_arr , cur_key_name , strlen(cur_key_name))) != NULL) {
ele_value         864 ext/intl/locale/locale_methods.c 				if( Z_TYPE_P(ele_value)!= IS_STRING ){
ele_value         873 ext/intl/locale/locale_methods.c 				smart_str_appendl(loc_name, Z_STRVAL_P(ele_value) , Z_STRLEN_P(ele_value));
ele_value        1426 ext/intl/locale/locale_methods.c 	zval* ele_value = NULL;
ele_value        1436 ext/intl/locale/locale_methods.c 	ZEND_HASH_FOREACH_VAL(hash_arr, ele_value) {
ele_value        1438 ext/intl/locale/locale_methods.c 		if(Z_TYPE_P(ele_value)!= IS_STRING) {
ele_value        1443 ext/intl/locale/locale_methods.c 		cur_arr[cur_arr_len*2] = estrndup(Z_STRVAL_P(ele_value), Z_STRLEN_P(ele_value));
ele_value        1444 ext/intl/locale/locale_methods.c 		result = strToMatch(Z_STRVAL_P(ele_value), cur_arr[cur_arr_len*2]);
ele_value        1449 ext/intl/locale/locale_methods.c 		cur_arr[cur_arr_len*2+1] = Z_STRVAL_P(ele_value);