Lines Matching refs:from_encoding
1939 zend_string *from_encoding = NULL;
1946 Z_PARAM_STR_OR_NULL(from_encoding)
1952 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 4);
1974 zend_string *from_encoding = NULL;
1981 Z_PARAM_STR_OR_NULL(from_encoding)
1987 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 4);
2362 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)
2373 string.encoding = from_encoding;
2378 convd = mbfl_buffer_converter_new(from_encoding, to_encoding, string.len);
2404 const mbfl_encoding *from_encoding;
2413 from_encoding = *from_encodings;
2420 from_encoding = mbfl_identify_encoding(
2422 if (!from_encoding) {
2428 return php_mb_convert_encoding_ex(input, length, to_encoding, from_encoding, output_len);
2594 zend_string *from_encoding = NULL;
2603 Z_PARAM_STR_OR_NULL(from_encoding)
2606 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 3);
2629 zend_string *from_encoding = NULL;
2636 Z_PARAM_STR_OR_NULL(from_encoding)
2639 const mbfl_encoding *enc = php_mb_get_encoding(from_encoding, 2);
2657 zend_string *from_encoding = NULL;
2667 Z_PARAM_STR_OR_NULL(from_encoding)
2670 enc = php_mb_get_encoding(from_encoding, 2);
3067 const mbfl_encoding *from_encoding, *to_encoding;
3088 from_encoding = MBSTRG(current_internal_encoding);
3089 mbfl_string_init_set(&string, from_encoding);
3110 from_encoding = *elist;
3113 from_encoding = NULL;
3123 from_encoding = mbfl_encoding_detector_judge(identd);
3132 if (!from_encoding) {
3141 convd = mbfl_buffer_converter_new(from_encoding, to_encoding, 0);
3169 RETURN_STRING(from_encoding->name);