/bootable/recovery/edify/ |
lexer.l | 32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \ 47 yylloc.start = gPos; 59 yylloc.end = gPos;
|
/external/bison/examples/calc++/ |
calc++-driver.hh | 12 yy::calcxx_parser::location_type* yylloc, \
|
calc++-scanner.cc | 567 # define YY_USER_ACTION yylloc->columns (yyleng); 811 yylloc->step (); 926 yylloc->step (); 932 yylloc->lines (yyleng); yylloc->step (); 955 driver.error (*yylloc, "integer is out of range"); 971 driver.error (*yylloc, "invalid character"); [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/ |
glcpp-lex.l | 48 yylloc->source = parser->new_source_number; \ 49 yylloc->first_column = yycolumn + 1; \ 50 yylloc->first_line = yylineno; \ 60 yylloc->source = 0; \ 184 glcpp_error(yylloc, yyextra, "#error%s", p);
|
glcpp-parse.y | 137 glcpp_parser_lex (YYSTYPE *yylval, YYLTYPE *yylloc, glcpp_parser_t *parser); 536 $$->location = yylloc; 540 $$->location = yylloc; 544 $$->location = yylloc; 548 $$->location = yylloc; 552 $$->location = yylloc; [all...] |
/external/mesa3d/src/glsl/glcpp/ |
glcpp-lex.l | 48 yylloc->source = parser->new_source_number; \ 49 yylloc->first_column = yycolumn + 1; \ 50 yylloc->first_line = yylineno; \ 60 yylloc->source = 0; \ 184 glcpp_error(yylloc, yyextra, "#error%s", p);
|
glcpp-parse.y | 137 glcpp_parser_lex (YYSTYPE *yylval, YYLTYPE *yylloc, glcpp_parser_t *parser); 536 $$->location = yylloc; 540 $$->location = yylloc; 544 $$->location = yylloc; 548 $$->location = yylloc; 552 $$->location = yylloc; [all...] |
/external/chromium_org/third_party/angle/src/compiler/ |
glslang.l | 51 yylloc->first_file = yylloc->last_file = yycolumn; \ 52 yylloc->first_line = yylloc->last_line = yylineno; 288 yyextra->error(*yylloc, "Illegal use of reserved word", yytext, ""); 302 yyextra->warning(*yylloc, "Integer overflow", yytext, ""); 310 yyextra->warning(*yylloc, "Float overflow", yytext, "");
|
glslang_lex.cpp | 856 # define yylloc macro [all...] |
glslang_tab.cpp | 310 extern int yylex(YYSTYPE* yylval, YYLTYPE* yylloc, void* yyscanner); 311 extern void yyerror(YYLTYPE* yylloc, TParseContext* context, const char* reason); [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
program_lexer.l | 132 yylloc->first_column = yylloc->last_column; \ 133 yylloc->last_column += yyleng; \ 134 if ((yylloc->first_line == 1) \ 135 && (yylloc->first_column == 1)) { \ 136 yylloc->position = 1; \ 138 yylloc->position += yylloc->last_column - yylloc->first_column; \ 485 yylloc->first_line++ [all...] |
/external/mesa3d/src/mesa/program/ |
program_lexer.l | 132 yylloc->first_column = yylloc->last_column; \ 133 yylloc->last_column += yyleng; \ 134 if ((yylloc->first_line == 1) \ 135 && (yylloc->first_column == 1)) { \ 136 yylloc->position = 1; \ 138 yylloc->position += yylloc->last_column - yylloc->first_column; \ 485 yylloc->first_line++ [all...] |
/external/bison/data/ |
glr.c | 64 b4_locations_if([, [[YYLTYPE *], [&yylloc]]])])dnl 70 # Optional effective arguments passed to yyerror: user args plus yylloc, and 79 # Same as above, but on the lookahead, hence &yylloc instead of yylocp. 81 [b4_pure_if([b4_locations_if([&yylloc, ])])dnl 94 # Same as above, but on the lookahead, hence &yylloc instead of yylocp. 96 [b4_pure_if([b4_locations_if([, &yylloc])])[]b4_user_args]) 204 #define yylloc ]b4_prefix[lloc]])])[ macro 484 #undef yylloc macro 485 #define yylloc (yystackp->yyloc) macro 490 #define b4_prefix[]lloc yylloc])], [all...] |
lalr1.java | 101 private ]b4_location_type[ yylloc (YYStack rhs, int n) 333 ]b4_locations_if([b4_location_type[ yyloc = yylloc (yystack, yylen);]])[ 448 ]b4_location_type[ yylloc = new ]b4_location_type[ (null, null); 460 b4_dollar_pushdef([yylval], [], [yylloc])dnl 466 yystack.push (yystate, yylval]b4_locations_if([, yylloc])[); 497 yylloc = new ]b4_location_type[(yylexer.getStartPos (), 512 yylval]b4_locations_if([, yylloc])[); 537 yylval]b4_locations_if([, yylloc])[); 548 yystack.push (yystate, yylval]b4_locations_if([, yylloc])[); 583 yyerror (]b4_locations_if([yylloc, ])[yysyntax_error (yystate, yytoken)) [all...] |
yacc.c | 95 # Arguments passed to yyerror: user args plus yylloc. 97 [b4_yyerror_arg_loc_if([&yylloc, ])dnl 107 b4_locations_if([, [[YYLTYPE *], [&yylloc]]])m4_ifdef([b4_lex_param], [, ])])dnl 213 YYLTYPE yylloc]b4_pure_if([ = yyloc_default], [b4_yyloc_default])[; 368 #define yylloc ]b4_prefix[lloc]])])[ macro 793 # define YYLEX yylex (]b4_pure_if([&yylval[]b4_locations_if([, &yylloc]), ])[YYLEX_PARAM) [all...] |
/external/chromium_org/third_party/angle/src/compiler/preprocessor/ |
Tokenizer.l | 61 yylloc->file = yyfileno; \ 62 yylloc->line = yylineno; \ 253 yylloc->file = yyfileno; 254 yylloc->line = yylineno;
|
Tokenizer.cpp | 557 yylloc->file = yyfileno; \ 558 yylloc->line = yylineno; \ 614 # define yylloc yyg->yylloc_r macro 797 yylloc = yylloc_param; 1140 yylloc->file = yyfileno; 1141 yylloc->line = yylineno; [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
lex.yy.c | 1237 # define yylloc macro [all...] |
glcpp-lex.c | 613 yylloc->source = parser->new_source_number; \ 614 yylloc->first_column = yycolumn + 1; \ 615 yylloc->first_line = yylineno; \ 625 yylloc->source = 0; \ 689 # define yylloc yyg->yylloc_r macro 903 yylloc = yylloc_param; [all...] |
glsl_lexer.cc | 1198 # define yylloc macro [all...] |
/external/bison/src/ |
parse-gram.c | 72 #define yylloc gram_lloc macro 123 FIXME: depends on the undocumented availability of YYLLOC. */ 126 gram_error (&yylloc, Msg) 1911 YYLTYPE yylloc local [all...] |
/external/e2fsprogs/intl/ |
plural.c | 504 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM) 506 # define YYLEX yylex (&yylval, &yylloc) 661 YYLTYPE yylloc; 940 *++yylsp = yylloc; [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
glsl_parser_extras.h | 265 extern int _mesa_glsl_lex(union YYSTYPE *yylval, YYLTYPE *yylloc,
|
/external/mesa3d/src/glsl/ |
glsl_parser_extras.h | 265 extern int _mesa_glsl_lex(union YYSTYPE *yylval, YYLTYPE *yylloc,
|
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/ |
program_parse.tab.c | 72 #define yylloc _mesa_program_lloc macro 2018 YYLTYPE yylloc; local [all...] |