HomeSort by relevance Sort by last modified time
    Searched refs:yyleng (Results 1 - 25 of 35) sorted by null

1 2

  /bootable/recovery/edify/
lexer.l 32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \
33 gColumn+=yyleng; gPos+=yyleng;} while(0)
63 \\n { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\n'; }
64 \\t { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\t'; }
65 \\\" { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\"'; }
66 \\\\ { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\\';
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Tokenizer.l 63 scanLoc->cIndex += yyleng; \
113 yylval->assign(yytext, yyleng);
118 yylval->assign(yytext, yyleng);
123 yylval->assign(yytext, yyleng);
130 yylval->assign(yytext, yyleng);
135 yylval->assign(yytext, yyleng);
139 yylval->assign(yytext, yyleng);
143 yylval->assign(yytext, yyleng);
147 yylval->assign(yytext, yyleng);
151 yylval->assign(yytext, yyleng);
    [all...]
Tokenizer.cpp 143 #define yyleng yyg->yyleng_r macro
363 yyleng = (yy_size_t) (yy_cp - yy_bp); \
579 scanLoc->cIndex += yyleng; \
721 #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
793 /* Code executed at the beginning of each rule, after yytext and yyleng
942 yylval->assign(yytext, yyleng);
949 yylval->assign(yytext, yyleng);
956 yylval->assign(yytext, yyleng);
965 yylval->assign(yytext, yyleng);
972 yylval->assign(yytext, yyleng);
    [all...]
  /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));
  /external/elfutils/0.153/libcpu/
i386_lex.l 73 yyleng - 2);
79 <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);
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
spec.l 63 memcpy(apis[apiCount].name, yytext, yyleng);
167 memcpy(currType->typeName, yytext, yyleng);
176 memcpy(currType->name, yytext, yyleng);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
spec.l 63 memcpy(apis[apiCount].name, yytext, yyleng);
167 memcpy(currType->typeName, yytext, yyleng);
176 memcpy(currType->name, yytext, yyleng);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
spec.l 63 memcpy(apis[apiCount].name, yytext, yyleng);
167 memcpy(currType->typeName, yytext, yyleng);
176 memcpy(currType->name, yytext, yyleng);
  /external/elfutils/0.153/src/
ldlex.l 59 = fwrite (yytext, yyleng, 1, yyout); } while (0)
159 while (cnt < yyleng - 1)
195 yytext, yyleng);
199 yytext, yyleng);
  /frameworks/compile/mclinker/include/mcld/Script/
FlexLexer.h 75 int YYLeng() const { return yyleng; }
105 int yyleng; member in class:FlexLexer
  /frameworks/compile/mclinker/lib/Script/
ScriptScanner.ll 34 #define YY_USER_ACTION yylloc->columns(yyleng);
201 llvm::StringRef str(yytext, yyleng);
205 str.substr(0, yyleng - 1).getAsInteger(0, yylval->integer);
210 str.substr(0, yyleng - 1).getAsInteger(0, yylval->integer);
222 const std::string& str = pScriptFile.createParserStr(yytext, yyleng);
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 + 2, yyleng - 2);
254 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...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glcpp-lex.c 133 #define yyleng yyg->yyleng_r macro
356 yyleng = (size_t) (yy_cp - yy_bp); \
616 yycolumn += yyleng; \
785 #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
857 /* Code executed at the beginning of each rule, after yytext and yyleng
870 if ( yyleng > 0 ) \
872 (yytext[yyleng - 1] == '\n'); \
    [all...]
glsl_lexer.cc 133 #define yyleng yyg->yyleng_r macro
356 yyleng = (size_t) (yy_cp - yy_bp); \
    [all...]
lex.yy.c 133 #define yyleng yyg->yyleng_r macro
356 yyleng = (size_t) (yy_cp - yy_bp); \
    [all...]
  /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/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
handlebars-1.0.0.beta.6.js 108 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;
260 yyleng = this.lexer.yyleng;
275 r = this.performAction.call(yyval, yytext, yyleng, yylineno, this.yy, action[1], vstack, lstack);
310 this.yylineno = this.yyleng = 0;
319 this.yyleng++;
378 this.yyleng = this.yytext.length;
423 if(yy_.yytext.slice(-1) === "\\") yy_.yytext = yy_.yytext.substr(0,yy_.yyleng-1), this.begin("emu");
445 case 10: yy_.yytext = yy_.yytext.substr(3,yy_.yyleng-5); this.popState(); return 15;
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
parse-events-flex.c 132 #define yyleng yyg->yyleng_r macro
352 yyleng = (size_t) (yy_cp - yy_bp); \
    [all...]
parse-events-flex.h 125 #define yyleng yyg->yyleng_r macro
  /external/chromium_org/third_party/angle/src/compiler/translator/
glslang_lex.cpp 155 #define yyleng yyg->yyleng_r macro
220 for ( yyl = n; yyl < yyleng; ++yyl )\
388 yyleng = (yy_size_t) (yy_cp - yy_bp); \
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
glcpp-lex.l 51 yycolumn += yyleng; \
  /external/mesa3d/src/glsl/glcpp/
glcpp-lex.l 51 yycolumn += yyleng; \

Completed in 730 milliseconds

1 2