Lines Matching refs:lexer

183 static int yylex(YYSTYPE * lvalp, YYLTYPE * yylloc, ElftosbLexer * lexer);
186 static void yyerror(YYLTYPE * yylloc, ElftosbLexer * lexer, CommandFileASTNode ** resultAST, const …
859 yyerror (&yylloc, lexer, resultAST, YY_("syntax error: cannot back up")); \
916 # define YYLEX yylex (&yylval, &yylloc, lexer)
1239 int yyparse (ElftosbLexer * lexer, CommandFileASTNode ** resultAST);
1264 yyparse (ElftosbLexer * lexer, CommandFileASTNode ** resultAST)
1267 yyparse (lexer, resultAST)
1268 ElftosbLexer * lexer;
1646lexer->addSourceName(node->getName());
1869 … yyerror(&yylloc, lexer, resultAST, "HAB features not supported with the selected family");
2021 … yyerror(&yylloc, lexer, resultAST, "invalid call_or_jump value");
2044 … yyerror(&yylloc, lexer, resultAST, "HAB features not supported with the selected family");
2058 … yyerror(&yylloc, lexer, resultAST, "invalid call_or_jump value");
2637 yyerror (&yylloc, lexer, resultAST, yymsg);
2642 yyerror (&yylloc, lexer, resultAST, YY_("syntax error"));
2648 yyerror (&yylloc, lexer, resultAST, YY_("syntax error"));
2763 yyerror (&yylloc, lexer, resultAST, YY_("memory exhausted"));
2790 static int yylex(YYSTYPE * lvalp, YYLTYPE * yylloc, ElftosbLexer * lexer) in yylex() argument
2792 int token = lexer->yylex(); in yylex()
2793 *yylloc = lexer->getLocation(); in yylex()
2794 lexer->getSymbolValue(lvalp); in yylex()
2798 static void yyerror(YYLTYPE * yylloc, ElftosbLexer * lexer, CommandFileASTNode ** resultAST, const … in yyerror() argument