HomeSort by relevance Sort by last modified time
    Searched refs:yylloc (Results 1 - 25 of 25) sorted by null

  /frameworks/compile/mclinker/include/mcld/Script/
ScriptScanner.h 24 mcld::ScriptParser::location_type* yylloc, \
44 ScriptParser::location_type* yylloc,
  /external/mesa3d/src/compiler/glsl/glcpp/
glcpp-lex.l 48 yylloc->source = parser->new_source_number; \
49 yylloc->first_column = yycolumn + 1; \
50 yylloc->first_line = yylloc->last_line = yylineno; \
52 yylloc->last_column = yycolumn + 1; \
61 yylloc->source = 0; \
440 glcpp_error(yylloc, yyextra, "#define followed by a non-identifier: %s", yytext);
448 glcpp_error(yylloc, yyextra, "#define followed by a non-identifier: %s", yytext);
507 glcpp_error(yylloc, yyextra, "Token pasting (##) is illegal in GLES");
556 glcpp_error(yylloc, yyextra, "Unterminated comment")
    [all...]
glcpp-parse.y 148 glcpp_parser_lex(YYSTYPE *yylval, YYLTYPE *yylloc, glcpp_parser_t *parser);
699 $$->location = yylloc;
703 $$->location = yylloc;
707 $$->location = yylloc;
711 $$->location = yylloc;
715 $$->location = yylloc;
719 $$->location = yylloc;
    [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; \
462 yylloc->first_line++
    [all...]
  /system/tools/hidl/
hidl-gen_l.ll 69 #define YY_USER_ACTION yylloc->step(); yylloc->columns(yyleng);
98 <DOC_COMMENT_STATE>[\n] { gCurrentComment += yytext; yylloc->lines(); }
103 <COMMENT_STATE>[\n] { yylloc->lines(); }
189 \n|\r\n { yylloc->lines(); }
  /external/swiftshader/src/OpenGL/compiler/
glslang.l 67 yylloc->first_file = yylloc->last_file = yycolumn; \
68 yylloc->first_line = yylloc->last_line = yylineno;
401 <*>. { context->warning(*yylloc, "Unknown char", yytext, ""); return 0; }
440 yyextra->error(*yylloc, "Illegal use of reserved word", yytext, "");
490 context->error(*yylloc, "Unsigned integers are unsupported prior to GLSL ES 3.00", yytext, "");
496 yyextra->warning(*yylloc, "Integer overflow", yytext, "");
507 context->error(*yylloc, "Floating-point suffix unsupported prior to GLSL ES 3.00", yytext);
513 yyextra->warning(*yylloc, "Float overflow", yytext, "")
    [all...]
glslang_lex.cpp 1262 # define yylloc macro
    [all...]
glslang_tab.cpp 340 extern int yylex(YYSTYPE* yylval, YYLTYPE* yylloc, void* yyscanner);
    [all...]
glslang.y 104 extern int yylex(YYSTYPE* yylval, YYLTYPE* yylloc, void* yyscanner);
    [all...]
  /external/dtc/
dtc-lexer.l 41 YYLTYPE yylloc;
47 srcpos_update(&yylloc, yytext, yyleng); \
302 srcpos_verror(&yylloc, "Lexical error", fmt, ap);
treesource.c 26 extern YYLTYPE yylloc;
38 yylloc.file = current_srcfile;
dtc-parser.y 532 ERROR(&yylloc, "%s", s);
  /prebuilts/build-tools/common/bison/
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...]
glr.cc 95 [yylloc.initialize ();]m4_ifdef([b4_initial_action], [
  /frameworks/compile/mclinker/lib/Script/
ScriptScanner.ll 41 #define YY_USER_ACTION yylloc->columns(yyleng);
60 yylloc->step();
259 enterComments(*yylloc);
269 enterComments(*yylloc);
270 yylloc->step();
275 yylloc->step();
280 yylloc->lines(1);
281 yylloc->step();
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Tokenizer.l 90 yylloc->file = yyfileno; \
91 yylloc->line = yylineno; \
292 yylloc->file = yyfileno;
293 yylloc->line = yylineno;
Tokenizer.cpp 963 yylloc->file = yyfileno; \
964 yylloc->line = yylineno; \
1049 # define yylloc yyg->yylloc_r macro
1334 yylloc = yylloc_param;
    [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...]
  /toolchain/binutils/binutils-2.27/intl/
plural.c 528 # define YYLEX yylex (&yylval, &yylloc, YYLEX_PARAM)
530 # define YYLEX yylex (&yylval, &yylloc)
687 YYLTYPE yylloc;
966 *++yylsp = yylloc;
    [all...]
  /system/tools/hidl/c2hal/
c2hal_l.ll 66 #define YY_USER_ACTION yylloc->first_line = yylineno;
  /external/mesa3d/src/compiler/glsl/
glsl_parser_extras.h 873 extern int _mesa_glsl_lexer_lex(union YYSTYPE *yylval, YYLTYPE *yylloc,
  /toolchain/binutils/binutils-2.27/gas/config/
m68k-parse.y 66 #define yylloc m68k_lloc
  /toolchain/binutils/binutils-2.27/ld/
deffilep.y 67 #define yylloc def_lloc
    [all...]

Completed in 186 milliseconds