Searched refs:yylineno (Results 1 - 20 of 20) sorted by relevance

/external/elfutils/libcpu/
H A Di386_lex.l47 %option yylineno
121 ch, yylineno);
H A Di386_lex.c18 #define yylineno i386_lineno macro
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp-lex.l46 yylineno = parser->new_line_number; \
50 yylloc->first_line = yylineno; \
58 yylineno = 1; \
114 <COMMENT>[^*\n]*\n { yylineno++; yycolumn = 0; return NEWLINE; }
116 <COMMENT>"*"+[^*/\n]*\n { yylineno++; yycolumn = 0; return NEWLINE; }
133 yylineno++;
292 yylineno++;
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-lex.l46 yylineno = parser->new_line_number; \
50 yylloc->first_line = yylineno; \
58 yylineno = 1; \
114 <COMMENT>[^*\n]*\n { yylineno++; yycolumn = 0; return NEWLINE; }
116 <COMMENT>"*"+[^*/\n]*\n { yylineno++; yycolumn = 0; return NEWLINE; }
133 yylineno++;
292 yylineno++;
/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
H A DTokenizer.l45 yylineno = 1; \
59 ++yyfileno; yylineno = 1; \
62 yylloc->line = yylineno; \
100 <COMMENT>{NEWLINE} { ++yylineno; }
227 ++yylineno;
232 \\{NEWLINE} { ++yylineno; }
251 yyfileno = static_cast<int>(sIndexMax); yylineno = 1;
254 yylloc->line = yylineno;
260 pp::SourceLocation(yyfileno, yylineno),
H A DTokenizer.cpp144 #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) macro
541 yylineno = 1; \
555 ++yyfileno; yylineno = 1; \
558 yylloc->line = yylineno; \
898 { ++yylineno; }
1107 ++yylineno;
1115 { ++yylineno; }
1138 yyfileno = static_cast<int>(sIndexMax); yylineno = 1;
1141 yylloc->line = yylineno;
1147 pp::SourceLocation(yyfileno, yylineno),
[all...]
/external/elfutils/src/
H A Dldlex.l90 %option yylineno
250 ++yylineno;
256 error (0, 0, gettext ("%d: garbage at end of line"), yylineno);
280 yylineno);
290 error (0, 0, gettext ("%d: unexpected #endif"), yylineno);
355 ch, yylineno);
H A Dldlex.c19 #define yylineno ldlineno macro
/external/mdnsresponder/mDNSShared/
H A Ddnsextd_lexer.l26 /* Mac OS X 10.4 has flex version 2.5.4, which doesn't define yylineno for us */
27 /* Mac OS X 10.5 has flex version 2.5.33, which does define yylineno */
29 int yylineno = 1;
82 \n yylineno++; /* ignore EOL */;
H A Ddnsextd_parser.y379 extern int yylineno;
383 fprintf( stderr,"%s:%d: error: %s\n", g_filename, yylineno, str );
/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
H A Dhandlebars-1.0.0.beta.6.js108 performAction: function anonymous(yytext,yyleng,yylineno,yy,yystate,$$,_$) {
200 var self = this, stack = [0], vstack = [null], lstack = [], table = this.table, yytext = "", yylineno = 0, yyleng = 0, recovering = 0, TERROR = 2, EOF = 1;
242 errStr = "Parse error on line " + (yylineno + 1) + ":\n" + this.lexer.showPosition() + "\nExpecting " + expected.join(", ") + ", got '" + this.terminals_[symbol] + "'";
244 errStr = "Parse error on line " + (yylineno + 1) + ": Unexpected " + (symbol == 1?"end of input":"'" + (this.terminals_[symbol] || symbol) + "'");
246 this.parseError(errStr, {text: this.lexer.match, token: this.terminals_[symbol] || symbol, line: this.lexer.yylineno, loc: yyloc, expected: expected});
262 yylineno = this.lexer.yylineno;
275 r = this.performAction.call(yyval, yytext, yyleng, yylineno, this.yy, action[1], vstack, lstack);
310 this.yylineno = this.yyleng = 0;
323 if (lines) this.yylineno
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglcpp-lex.c135 #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) macro
611 yylineno = parser->new_line_number; \
615 yylloc->first_line = yylineno; \
623 yylineno = 1; \
1004 { yylineno++; yycolumn = 0; return NEWLINE; }
1015 { yylineno++; yycolumn = 0; return NEWLINE; }
1042 yylineno++;
1305 yylineno++;
2235 return yylineno;
2310 yylineno
[all...]
H A Dglsl_lexer.cc135 #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) macro
1058 yylloc->first_line = yylineno + 1; \
1062 #define YY_USER_INIT yylineno = 0; yycolumn = 0;
1511 * yylineno is zero-based instead of
1514 yylineno = strtol(ptr, &ptr, 0) - 1;
1533 * yylineno is zero-based instead of
1536 yylineno = strtol(ptr, &ptr, 0) - 1;
1588 { BEGIN 0; yylineno++; yycolumn = 0; }
1630 { BEGIN 0; yylineno++; yycolumn = 0; return EOL; }
1636 { yylineno
[all...]
H A Dlex.yy.c135 #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) macro
3341 return yylineno;
3416 yylineno = line_number;
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A Dglslang.l52 yylloc->first_line = yylloc->last_line = yylineno;
63 %option yylineno reentrant bison-bridge bison-locations
H A Dglslang_lex.cpp156 #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) macro
208 * a 5% performance hit in a non-yylineno scanner, because yy_act is
216 --yylineno;\
797 yylloc->first_line = yylloc->last_line = yylineno;
1109 do{ yylineno++;
2124 do{ yylineno++;
2538 return yylineno;
2613 yylineno = line_number;
/external/bison/examples/calc++/
H A Dcalc++-scanner.cc406 /* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */
420 extern int yylineno;
422 int yylineno = 1; variable
892 /* %% [11.0] code for yylineno update goes here */
1412 /* %% [19.0] update BOL and yylineno */
1869 return yylineno;
1915 yylineno = line_number;
/external/bison/src/
H A Dscan-skel.c23 #define yylineno skel_lineno macro
H A Dscan-code.c23 #define yylineno code_lineno macro
H A Dscan-gram.c23 #define yylineno gram_lineno macro

Completed in 250 milliseconds