Home
last modified time | relevance | path

Searched refs:next_char (Results 1 – 3 of 3) sorted by relevance

/PHP-5.3/ext/standard/
H A Dhtml.c522 unsigned char next_char; in get_next_char() local
611 if ((next_char >= 0x40 && next_char <= 0x7e) || in get_next_char()
612 (next_char >= 0xa1 && next_char <= 0xfe)) { in get_next_char()
615 MB_WRITE(next_char); in get_next_char()
635 if ((next_char >= 0x40 && next_char <= 0x7e) || in get_next_char()
636 (next_char >= 0x80 && next_char <= 0xfc)) in get_next_char()
640 MB_WRITE(next_char); in get_next_char()
659 if (next_char >= 0xa1 && next_char <= 0xfe) { in get_next_char()
662 MB_WRITE(next_char); in get_next_char()
671 if (next_char >= 0xa1 && next_char <= 0xdf) { in get_next_char()
[all …]
H A Dfilters.c962 unsigned int next_char; member
985 unsigned int next_char; in php_conv_qprint_decode_convert() local
1003 next_char = inst->next_char; in php_conv_qprint_decode_convert()
1062 next_char = (next_char << 4) | (*ps >= 'A' ? *ps - 0x37 : *ps - 0x30); in php_conv_qprint_decode_convert()
1075 *(pd++) = next_char; in php_conv_qprint_decode_convert()
1145 inst->next_char = next_char; in php_conv_qprint_decode_convert()
1154 inst->next_char = 0; in php_conv_qprint_decode_ctor()
/PHP-5.3/ext/json/
H A DJSON_parser.c425 int next_char; /* the next character */ in parse_JSON() local
439 next_char = utf16_json[the_index]; in parse_JSON()
440 if (next_char >= 128) { in parse_JSON()
443 next_class = ascii_class[next_char]; in parse_JSON()
461 utf16_to_utf8(&buf, next_char); in parse_JSON()
463 switch (next_char) { in parse_JSON()
491 utf16 += dehexchar(next_char); in parse_JSON()
496 smart_str_appendc(&buf, next_char); in parse_JSON()
499 smart_str_appendc(&buf, next_char); in parse_JSON()
502 smart_str_appendc(&buf, next_char); in parse_JSON()
[all …]

Completed in 57 milliseconds