Lines Matching +full:0 +full:x62
63 * zero = %x30 ; 0
73 * %x62 / ; b backspace U+0008
88 * 0x27 (apostrophe) is recognized after escape, too
122 QEMU_BUILD_BUG_ON(JSON_ERROR != 0);
125 QEMU_BUILD_BUG_ON(JSON_MAX >= 0x80);
128 #define LOOKAHEAD 0x80
129 #define TERMINAL(state) [0 ... 0xFF] = ((state) | LOOKAHEAD)
144 [0 ... 0x1F] = IN_START | LOOKAHEAD,
145 [0x20 ... 0xFD] = IN_RECOVERY,
146 [0xFE ... 0xFF] = IN_START | LOOKAHEAD,
158 [0x20 ... 0xFD] = IN_DQ_STRING,
161 [0x20 ... 0xFD] = IN_DQ_STRING,
168 [0x20 ... 0xFD] = IN_SQ_STRING,
171 [0x20 ... 0xFD] = IN_SQ_STRING,
179 ['0' ... '9'] = JSON_ERROR,
186 ['0' ... '9'] = IN_EXP_DIGITS,
190 ['0' ... '9'] = IN_EXP_DIGITS,
196 ['0' ... '9'] = IN_EXP_DIGITS,
201 ['0' ... '9'] = IN_MANTISSA_DIGITS,
207 ['0' ... '9'] = IN_MANTISSA_DIGITS,
213 ['0' ... '9'] = IN_DIGITS,
220 ['0'] = IN_ZERO,
235 ['0' ... '9'] = IN_INTERP,
246 ['0'] = IN_ZERO,
280 lexer->x = lexer->y = 0; in json_lexer_init()
290 lexer->x = 0; in json_lexer_feed_char()
317 g_string_truncate(lexer->token, 0); in json_lexer_feed_char()
326 g_string_truncate(lexer->token, 0); in json_lexer_feed_char()
340 g_string_truncate(lexer->token, 0); in json_lexer_feed_char()
349 for (i = 0; i < size; i++) { in json_lexer_feed()
356 json_lexer_feed_char(lexer, 0, true); in json_lexer_flush()