Lines Matching refs:input_stream_pos
43 static unichar *input_stream_pos = NULL; variable
52 input_stream = input_stream_pos = unichar_dup (src); in mc_set_content()
141 switch (input_stream_pos[0]) in parse_digit()
143 case 'x': case 'X': base = 16; input_stream_pos++; break; in parse_digit()
144 case 'o': case 'O': base = 8; input_stream_pos++; break; in parse_digit()
145 case 'b': case 'B': base = 2; input_stream_pos++; break; in parse_digit()
151 while ((ch = input_stream_pos[0]) != 0) in parse_digit()
163 ++input_stream_pos; in parse_digit()
165 if (input_stream_pos[0] == 'U' || input_stream_pos[0] == 'u') in parse_digit()
166 input_stream_pos++; in parse_digit()
167 if (input_stream_pos[0] == 'L' || input_stream_pos[0] == 'l') in parse_digit()
168 input_stream_pos++; in parse_digit()
169 if (input_stream_pos[0] == 'L' || input_stream_pos[0] == 'l') in parse_digit()
170 input_stream_pos++; in parse_digit()
337 while (input_stream_pos[0] != 0 && input_stream_pos[0] != '\n') in skip_until_eol()
338 ++input_stream_pos; in skip_until_eol()
339 if (input_stream_pos[0] == 0) in skip_until_eol()
341 if (input_stream_pos[0] == '\n') in skip_until_eol()
343 ++input_stream_pos; in skip_until_eol()
355 if (! input_stream_pos) in yylex()
363 start_token = input_stream_pos; in yylex()
364 if (input_stream_pos[0] == 0) in yylex()
367 if (input_stream_pos[0] == '.' && input_stream_pos[1] == 0) in yylex()
369 if (input_stream_pos[0] == '.' in yylex()
370 && (input_stream_pos[1] == '\n' in yylex()
371 || (input_stream_pos[1] == '\r' && input_stream_pos[2] == '\n'))) in yylex()
378 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
382 while ((ch = input_stream_pos[0]) <= 0x20) in yylex()
386 ++input_stream_pos; in yylex()
395 start_token = input_stream_pos; in yylex()
396 ++input_stream_pos; in yylex()
403 while ((ch = input_stream_pos[0]) != 0) in yylex()
407 ++input_stream_pos; in yylex()
409 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
411 ++input_stream_pos; in yylex()
415 while ((ch = input_stream_pos[0]) != 0) in yylex()
419 ++input_stream_pos; in yylex()
421 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
431 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()
451 while (input_stream_pos[0] >= 0x40 || (input_stream_pos[0] >= '0' && input_stream_pos[0] <= '9')) in yylex()
452 ++input_stream_pos; in yylex()
453 ret = mc_token (start_token, (size_t) (input_stream_pos - start_token)); in yylex()
456 yylval.ustr = get_diff (input_stream_pos, start_token); in yylex()