Home
last modified time | relevance | path

Searched refs:yylineno (Results 1 – 13 of 13) sorted by relevance

/external/elfutils/src/
Dldlex.l73 %option yylineno
232 ++yylineno; in eat_to_eol()
238 error (0, 0, gettext ("%d: garbage at end of line"), yylineno); in eat_to_eol()
262 yylineno); in push_state()
272 error (0, 0, gettext ("%d: unexpected #endif"), yylineno); in pop_state()
337 ch, yylineno); in invalid_char()
Dldlex.c17 #define yylineno ldlineno macro
291 extern int yylineno;
292 int yylineno = 1; variable
1306 ++yylineno;
1995 --yylineno;
2075 ++yylineno; in yyinput()
2552 ++yylineno; in eat_to_eol()
2558 error (0, 0, gettext ("%d: garbage at end of line"), yylineno); in eat_to_eol()
2582 yylineno); in push_state()
2592 error (0, 0, gettext ("%d: unexpected #endif"), yylineno); in pop_state()
[all …]
/external/webkit/WebKitTools/android/flex-2.5.4a/
DFlexLexer.h82 int lineno() const { return yylineno; } in lineno()
90 int yylineno; // only maintained if you use %option yylineno variable
Dflex.skl279 %% yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here
509 %% code for yylineno update goes here
657 yylineno = 1; // this will only get updated if %option yylineno
961 %% update yylineno here
1044 %% update BOL and yylineno
DNEWS176 yylineno if set, keep track of the current line
177 number in global yylineno (this option is expensive
418 - input() now maintains yylineno.
663 particular, -l includes support for "yylineno" and makes yytext
972 lex has been reordered so that the discussion of yylineno
997 - a defense of why yylineno is not supported is included, along
/external/bluetooth/bluez/tools/
Dlexer.c332 extern int yylineno;
334 int yylineno = 1; variable
1605 return yylineno; in yyget_lineno()
1648 yylineno = line_number; in yyset_lineno()
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Borland.old/
DBorland-2.4144 "%% yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here",
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/
Dflex.man2006 Note that the use of REJECT, %option yylineno, and
2335 yylineno
2464 yylineno
2467 global variable yylineno. This option is implied by
2542 %option yylineno
2929 yylineno), or 1 if %option yylineno was not used.
3156 - The undocumented lex scanner internal variable yylineno
3157 is not supported unless -l or %option yylineno is used.
3159 yylineno should be maintained on a per-buffer basis,
3176 yylineno is not part of the POSIX specification.
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/texinfo/
Dflex.info1668 Note that the use of `REJECT', `%option yylineno' and variable
1911 yylineno
2003 `yylineno'
2006 `yylineno'. This option is implied by `%option lex-compat'.
2069 %option yylineno
2361 returns the current input line number (see `%option yylineno'), or
2362 1 if `%option yylineno' was not used.
2544 - The undocumented `lex' scanner internal variable `yylineno' is not
2545 supported unless `-l' or `%option yylineno' is used. `yylineno'
2547 per-scanner (single global variable) basis. `yylineno' is not
Dflex.texi1977 Note that the use of @code{REJECT}, @samp{%option yylineno} and
2267 yylineno
2372 @item yylineno
2375 @code{yylineno}. This option is implied by @samp{%option lex-compat}.
2453 %option yylineno
2794 returns the current input line number (see @samp{%option yylineno}),
2795 or 1 if @samp{%option yylineno} was not used.
3004 The undocumented @code{lex} scanner internal variable @code{yylineno}
3005 is not supported unless @samp{-l} or @samp{%option yylineno} is used.
3006 @code{yylineno} should be maintained on a per-buffer basis, rather
[all …]
/external/bison/
DChangeLog5066 * data/glr.c (yy_reduce_print): yylineno -> yylno,
5067 to avoid collision with flex use of yylineno.
6605 * src/scan-skel.l (yylineno, yyoutname): Remove static vars, replacing
10814 Don't use %option yylineno: it seems that then Flex imagines
/external/webkit/JavaScriptCore/
DChangeLog-2009-06-165629 (JSC::Lexer::setCode): Updated for name change from yylineno to m_line.
5635 (JSC::Lexer::nextLine): Updated for name change from yylineno to m_line.
5671 * parser/Lexer.h: Renamed yylineno to m_lineNumber. Removed convertHex
DChangeLog-2008-08-108333 (Lexer::setCode): Made yylineno = startingLineNumber instead of adding 1.