Lines Matching refs:from_encoding
1930 zend_string *from_encoding = NULL;
1937 Z_PARAM_STR_OR_NULL(from_encoding)
1943 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 4);
1965 zend_string *from_encoding = NULL;
1972 Z_PARAM_STR_OR_NULL(from_encoding)
1978 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 4);
2353 MBSTRING_API char *php_mb_convert_encoding_ex(const char *input, size_t length, const mbfl_encoding *to_encoding, const mbfl_encoding *from_encoding, size_t *output_len)
2364 string.encoding = from_encoding;
2369 convd = mbfl_buffer_converter_new(from_encoding, to_encoding, string.len);
2395 const mbfl_encoding *from_encoding;
2404 from_encoding = *from_encodings;
2411 from_encoding = mbfl_identify_encoding(
2413 if (!from_encoding) {
2419 return php_mb_convert_encoding_ex(input, length, to_encoding, from_encoding, output_len);
2615 zend_string *from_encoding = NULL;
2624 Z_PARAM_STR_OR_NULL(from_encoding)
2627 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 3);
2650 zend_string *from_encoding = NULL;
2657 Z_PARAM_STR_OR_NULL(from_encoding)
2660 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 2);
2678 zend_string *from_encoding = NULL;
2688 Z_PARAM_STR_OR_NULL(from_encoding)
2691 enc = php_mb_get_encoding(from_encoding, 2);
3102 const mbfl_encoding *from_encoding, *to_encoding;
3123 from_encoding = MBSTRG(current_internal_encoding);
3124 mbfl_string_init_set(&string, from_encoding);
3145 from_encoding = *elist;
3148 from_encoding = NULL;
3158 from_encoding = mbfl_encoding_detector_judge(identd);
3167 if (!from_encoding) {
3176 convd = mbfl_buffer_converter_new(from_encoding, to_encoding, 0);
3204 RETURN_STRING(from_encoding->name);