/external/bison/src/ |
flex-scanner.h | 48 yyleng etc. when a prefix is given, since there is no longer a 51 #ifndef yyleng 52 # define yyleng FLEX_PREFIX (leng) macro 80 obstack_grow (&obstack_for_string, yytext, yyleng)
|
scan-skel.l | 82 yytext[yyleng-1] = '\0'; 83 obstack_grow (&obstack_for_string, yytext, yyleng);
|
scan-gram.l | 53 #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));
|
scan-code.l | 47 #define YY_USER_ACTION location_compute (loc, &loc->end, yytext, yyleng);
|
scan-skel.c | 21 #define yyleng skel_leng macro [all...] |
scan-code.c | 21 #define yyleng code_leng macro [all...] |
scan-gram.c | 21 #define yyleng gram_leng macro [all...] |
/toolchain/binutils/binutils-2.25/binutils/ |
syslex.l | 55 yylval.s = malloc (yyleng - 1); 56 memcpy (yylval.s, yytext + 1, yyleng - 2); 57 yylval.s[yyleng - 2] = '\0';
|
deflex.l | 73 yylval.id[yyleng-2] = 0; 79 yylval.id[yyleng-2] = 0;
|
/toolchain/binutils/binutils-2.25/gas/ |
itbl-lex.l | 63 yytext[yyleng] = 0; 68 yytext[yyleng] = 0; 73 yytext[yyleng] = 0; 78 yytext[yyleng] = 0;
|
/external/elfutils/libcpu/ |
i386_lex.l | 76 yyleng - 2); 82 <MAIN>{ID} { i386_lval.str = xstrndup (yytext, yyleng);
|
/frameworks/rs/ |
spec.l | 63 memcpy(apis[apiCount].name, yytext, yyleng); 167 memcpy(currType->typeName, yytext, yyleng); 176 memcpy(currType->name, yytext, yyleng);
|
/external/elfutils/src/ |
ldlex.l | 51 = fwrite (yytext, yyleng, 1, yyout); } while (0) 151 while (cnt < yyleng - 1) 187 yytext, yyleng); 191 yytext, yyleng);
|
/frameworks/compile/mclinker/include/mcld/Script/ |
FlexLexer.h | 74 int YYLeng() const { return yyleng; } 102 int yyleng; member in class:FlexLexer
|
/frameworks/compile/mclinker/lib/Script/ |
ScriptScanner.ll | 41 #define YY_USER_ACTION yylloc->columns(yyleng); 208 llvm::StringRef str(yytext, yyleng); 212 str.substr(0, yyleng - 1).getAsInteger(0, yylval->integer); 217 str.substr(0, yyleng - 1).getAsInteger(0, yylval->integer); 229 const std::string& str = pScriptFile.createParserStr(yytext, yyleng); 236 const std::string& str = pScriptFile.createParserStr(yytext, yyleng); 243 const std::string& str = pScriptFile.createParserStr(yytext, yyleng); 250 const std::string& str = pScriptFile.createParserStr(yytext + 2, yyleng - 2); 261 const std::string& str = pScriptFile.createParserStr(yytext, yyleng);
|
/external/bison/examples/calc++/ |
calc++-scanner.cc | 205 extern yy_size_t yyleng; 343 yy_size_t yyleng; variable 441 /* %% [2.0] code to fiddle yytext and yyleng for yymore() goes here \ */\ 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) 781 /* Code executed at the beginning of each rule, after yytext and yyleng 932 yylloc->lines (yyleng); yylloc->step (); [all...] |
/toolchain/binutils/binutils-2.25/ld/ |
ldlex.l | 155 switch (yytext[yyleng - 1]) { 189 if (yytext[yyleng - 1] == 'M' 190 || yytext[yyleng - 1] == 'm') 194 else if (yytext[yyleng - 1] == 'K' 195 || yytext[yyleng - 1]=='k') 420 yylval.name[yyleng - 2] = 0;
|
/external/ipsec-tools/src/racoon/ |
cftoken.l | 413 yylval.val = vmalloc(yyleng + 1); 584 yylval.val = vmalloc(yyleng + (yyleng & 1) + 1); 595 if (yyleng & 1) 597 memcpy(p, &yytext[2], yyleng - 1); 609 yylval.val = vmalloc(yyleng - 1); 622 yylval.val = vmalloc(yyleng + 1);
|
/external/mesa3d/src/glsl/glcpp/ |
glcpp-lex.l | 51 yycolumn += yyleng; \
|
/external/mesa3d/src/mesa/program/ |
program_lexer.l | 133 yylloc->last_column += yyleng; \
|
/external/libpcap/ |
scanner.c | 20 #define yyleng pcap_leng macro [all...] |