Home
last modified time | relevance | path

Searched refs:convmap (Results 1 – 5 of 5) sorted by relevance

/PHP-5.5/ext/mbstring/tests/
H A Dmb_encode_numericentity.phpt12 $convmap = array(0x0, 0x2FFFF, 0, 0xFFFF);
13 echo mb_encode_numericentity($str1, $convmap, "UTF-8")."\n";
14 echo mb_encode_numericentity($str2, $convmap, "UTF-8")."\n";
16 $convmap = array(0xFF, 0x2FFFF, 0, 0xFFFF);
17 echo mb_encode_numericentity('aŒbœcŠdše€fg', $convmap, "UTF-8")."\n";
H A Dmb_decode_numericentity.phpt13 $convmap = array(0x0, 0x2FFFF, 0, 0xFFFF);
14 echo mb_decode_numericentity($str1, $convmap, "UTF-8")."\n";
15 echo mb_decode_numericentity($str2, $convmap, "UTF-8")."\n";
16 echo mb_decode_numericentity($str3, $convmap, "UTF-8")."\n";
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.h282 mbfl_html_numeric_entity(mbfl_string *string, mbfl_string *result, int *convmap, int mapsize, int t…
H A Dmbfilter.c2682 int *convmap; member
2696 mapelm = &(pc->convmap[n*4]); in collector_encode_htmlnumericentity()
2782 mapelm = &(pc->convmap[n*4]); in collector_decode_htmlnumericentity()
2864 mapelm = &(pc->convmap[n*4]); in collector_decode_htmlnumericentity()
2920 mapelm = &(pc->convmap[n*4]); in collector_encode_hex_htmlnumericentity()
3035 int *convmap, in mbfl_html_numeric_entity() argument
3084 pc.convmap = convmap; in mbfl_html_numeric_entity()
/PHP-5.5/ext/mbstring/
H A Dmbstring.c413 ZEND_ARG_INFO(0, convmap)
420 ZEND_ARG_INFO(0, convmap)
3714 int i, *convmap, *mapelm, mapsize=0; in php_mb_numericentity_exec() local
3747 convmap = NULL; in php_mb_numericentity_exec()
3753 convmap = (int *)safe_emalloc(i, sizeof(int), 0); in php_mb_numericentity_exec()
3754 mapelm = convmap; in php_mb_numericentity_exec()
3768 if (convmap == NULL) { in php_mb_numericentity_exec()
3773 ret = mbfl_html_numeric_entity(&string, &result, convmap, mapsize, type); in php_mb_numericentity_exec()
3779 efree((void *)convmap); in php_mb_numericentity_exec()

Completed in 29 milliseconds