Home
last modified time | relevance | path

Searched refs:yyleng (Results 1 – 25 of 34) sorted by relevance

12

/external/webkit/Tools/android/flex-2.5.4a/MISC/fastwc/
Dwc4.l11 {word}{ws}* ++wc; cc += yyleng;
12 {word}{ws}*\n ++wc; cc += yyleng; ++lc;
13 {words}{word}{ws}* wc += 2; cc += yyleng;
14 {words}{word}{ws}*\n wc += 2; cc += yyleng; ++lc;
15 {words}{2}{word}{ws}* wc += 3; cc += yyleng;
16 {words}{2}{word}{ws}*\n wc += 3; cc += yyleng; ++lc;
17 {words}{3}{word}{ws}* wc += 4; cc += yyleng;
18 {words}{3}{word}{ws}*\n wc += 4; cc += yyleng; ++lc;
20 {ws}+ cc += yyleng;
22 \n+ cc += yyleng; lc += yyleng;
Dwc3.l11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word}{ws}* cc += yyleng; wc += 2;
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
17 {ws}+ cc += yyleng;
19 \n+ cc += yyleng; lc += yyleng;
Dwc5.l11 {word}{ws}* cc += yyleng; ++wc;
12 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {words}{word} cc += yyleng; wc += 2; /* oops */
14 {words}{2}{word}{ws}* cc += yyleng; wc += 3;
15 {words}{3}{word}{ws}* cc += yyleng; wc += 4;
17 {ws}+ cc += yyleng;
19 \n+ cc += yyleng; lc += yyleng;
Dwc2.l10 {word}{ws}* cc += yyleng; ++wc;
11 {word}{ws}*\n cc += yyleng; ++wc; ++lc;
13 {ws}+ cc += yyleng;
15 \n+ cc += yyleng; lc += yyleng;
Dwc1.l9 {nonws}+ cc += yyleng; ++wc;
11 {ws}+ cc += yyleng;
/external/bison/src/
Dflex-scanner.h51 #ifndef yyleng
52 # define yyleng FLEX_PREFIX (leng) macro
80 obstack_grow (&obstack_for_string, yytext, yyleng)
Dscan-gram.l53 #define YY_USER_ACTION location_compute (loc, &scanner_cursor, yytext, yyleng);
60 scanner_cursor.column -= mbsnwidth (yytext, yyleng, 0); \
272 obstack_grow (&obstack_for_string, yytext + 1, yyleng - 2);
295 ngettext ("invalid character", "invalid characters", yyleng),
296 quote_mem (yytext, yyleng));
382 "invalid characters in bracketed name", yyleng),
383 quote_mem (yytext, yyleng));
Dscan-skel.l82 yytext[yyleng-1] = '\0';
83 obstack_grow (&obstack_for_string, yytext, yyleng);
Dscan-code.l47 #define YY_USER_ACTION location_compute (loc, &loc->end, yytext, yyleng);
/external/elfutils/src/
Dldlex.l59 = fwrite (yytext, yyleng, 1, yyout); } while (0)
159 while (cnt < yyleng - 1)
195 yytext, yyleng);
199 yytext, yyleng);
/external/elfutils/libcpu/
Di386_lex.l73 yyleng - 2);
79 <MAIN>{ID} { i386_lval.str = xstrndup (yytext, yyleng);
Di386_lex.c16 #define yyleng i386_leng macro
/external/bison/examples/calc++/
Dcalc++-scanner.cc205 extern yy_size_t yyleng;
343 yy_size_t yyleng; variable
442 yyleng = (size_t) (yy_cp - yy_bp); \
567 # define YY_USER_ACTION yylloc->columns (yyleng);
686 #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
932 yylloc->lines (yyleng); yylloc->step ();
1849 yytext[yyleng] = (yy_hold_char); \
1853 yyleng = yyless_macro_arg; \
1893 return yyleng; in yyget_leng()
Dcalc++-scanner.ll30 # define YY_USER_ACTION yylloc->columns (yyleng);
38 [\n]+ yylloc->lines (yyleng); yylloc->step ();
/external/webkit/Tools/android/flex-2.5.4a/
DFlexLexer.h59 int YYLeng() { return yyleng; } in YYLeng()
89 int yyleng; variable
Dinitscan.c102 extern int yyleng;
217 int yyleng; variable
281 yyleng = (int) (yy_cp - yy_bp); \
1412 #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
1475 if ( yyleng > 0 ) \
1477 (yytext[yyleng - 1] == '\n'); \
2188 yyless( yyleng - 2 ); /* put back '/', '*' */
2297 nmstr[yyleng - 2] = '\0'; /* chop trailing brace */
3547 yytext[yyleng] = yy_hold_char; \
3551 yyleng = n; \
Dscan.l353 yyless( yyleng - 2 ); /* put back '/', '*' */
440 nmstr[yyleng - 2] = '\0'; /* chop trailing brace */
Dflex.skl106 extern int yyleng;
230 int yyleng;
293 %% code to fiddle yytext and yyleng for yymore() goes here
384 #define ECHO (void) fwrite( yytext, yyleng, 1, yyout )
386 #define ECHO LexerOutput( yytext, yyleng )
435 /* Code executed at the beginning of each rule, after yytext and yyleng
1453 yytext[yyleng] = yy_hold_char; \
1457 yyleng = n; \
DNEWS593 with incorrect yytext/yyleng values).
731 - "yyleng" is now a global, and may be modified by the user (though
1079 - yyleng is now a bona fide global integer.
1190 - yyleng is a macro; it cannot be accessed outside of the
1193 - yytext and yyleng should not be modified within a flex action.
/external/webkit/Tools/android/flex-2.5.4a/MISC/MVS/
Dinitscan-mvs.c85 #define ECHO (void) fwrite( (char *) yytext, yyleng, 1, yyout )
258 yyleng = yy_cp - yy_bp; \
328 extern int yyleng;
332 int yyleng; variable
1792 nmstr[yyleng - 1] = '\0'; /* chop trailing brace */
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Dglslang_lex.cpp141 #define yyleng yyg->yyleng_r macro
196 for ( yyl = n; yyl < yyleng; ++yyl )\
369 yyleng = (size_t) (yy_cp - yy_bp); \
912 #define ECHO fwrite( yytext, yyleng, 1, yyout )
1083 for ( yyl = 0; yyl < yyleng; ++yyl )
2524 yytext[yyleng] = yyg->yy_hold_char; \
2528 yyleng = yyless_macro_arg; \
2593 return yyleng; in yyget_leng()
/external/webkit/Source/WebCore/css/
DCSSParser.h314 int yyleng; variable
/external/webkit/Tools/android/flex-2.5.4a/MISC/
Dflex.man607 integer yyleng. The action corresponding to the matched pat-
740 Actions are free to modify yyleng except they should not do
755 the Input is Matched", and yytext and yyleng set up
828 on the value of yyleng correctly reflecting the size of the
829 current token, so you must not modify yyleng if you are
837 yytext and yyleng are adjusted appropriately (e.g.,
838 yyleng will now be equal to n ). For example, on the
879 for ( i = yyleng - 1; i >= 0; --i )
1863 - int yyleng holds the length of the current token.
2333 yyleng
[all …]
/external/webkit/Tools/android/flex-2.5.4a/MISC/texinfo/
Dflex.info590 `yytext', and its length in the global integer `yyleng'. The ACTION
688 Actions are free to modify `yyleng' except they should not do so if
702 `yytext' and `yyleng' set up appropriately. It may either be one
755 the value of `yyleng' correctly reflecting the size of the current
756 token, so you must not modify `yyleng' if you are using `yymore()'.
762 the scanner looks for the next match. `yytext' and `yyleng' are
763 adjusted appropriately (e.g., `yyleng' will now be equal to N ).
789 for ( i = yyleng - 1; i >= 0; --i )
1542 - `int yyleng' holds the length of the current token.
1909 yyleng
[all …]
Dflex.texi714 global integer @code{yyleng}. The @var{action} corresponding to the
829 Actions are free to modify @code{yyleng} except they should not
850 @code{yytext} and @code{yyleng} set up appropriately. It may
917 depends on the value of @code{yyleng} correctly reflecting the
918 size of the current token, so you must not modify @code{yyleng}
928 the next match. @code{yytext} and @code{yyleng} are adjusted
929 appropriately (e.g., @code{yyleng} will now be equal to @var{n}
961 for ( i = yyleng - 1; i >= 0; --i )
1830 @samp{int yyleng} holds the length of the current token.
2265 yyleng
[all …]

12