HomeSort by relevance Sort by last modified time
    Searched refs:yyextra (Results 1 - 11 of 11) sorted by null

  /external/mesa3d/src/compiler/glsl/glcpp/
glcpp-lex.l 104 yylval->str = linear_strdup(yyextra->linalloc, yytext); \
201 glcpp_parser_t *parser = yyextra;
271 if (yyextra->space_tokens && YY_START != HASH)
292 yyextra->space_tokens = 0;
293 yyextra->lexing_version_directive = 1;
323 yyextra->space_tokens = 0;
333 yyextra->lexing_directive = 1;
334 yyextra->space_tokens = 0;
340 yyextra->lexing_directive = 1;
341 yyextra->space_tokens = 0
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Tokenizer.l 62 yyextra->leadingSpace = false; \
63 yyextra->lineStart = true; \
69 pp::Input* input = &yyextra->input; \
70 pp::Input::Location* scanLoc = &yyextra->scanLoc; \
83 result = yyextra->input.read(buf, maxSize);
118 yyextra->leadingSpace = true;
125 return yyextra->lineStart ? pp::Token::PP_HASH : pp::Token::PP_OTHER;
240 [ \t\v\f]+ { yyextra->leadingSpace = true; }
258 pp::Input* input = &yyextra->input;
259 pp::Input::Location* scanLoc = &yyextra->scanLoc
    [all...]
Tokenizer.cpp 149 #define yyextra yyg->yyextra_r macro
584 yyextra->leadingSpace = false; \
585 yyextra->lineStart = true; \
591 pp::Input* input = &yyextra->input; \
592 pp::Input::Location* scanLoc = &yyextra->scanLoc; \
605 result = yyextra->input.read(buf, maxSize);
960 yyextra->leadingSpace = true;
969 return yyextra->lineStart ? pp::Token::PP_HASH : pp::Token::PP_OTHER;
1158 { yyextra->leadingSpace = true; }
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
glslang.l 99 TParseContext* context = yyextra;
425 TSymbol* symbol = yyextra->symbolTable.find(yytext, yyextra->getShaderVersion());
426 if (yyextra->lexAfterType == false && symbol && symbol->isVariable()) {
429 yyextra->lexAfterType = true;
440 yyextra->error(*yylloc, "Illegal use of reserved word", yytext, "");
441 yyextra->recover();
496 yyextra->warning(*yylloc, "Integer overflow", yytext, "");
513 yyextra->warning(*yylloc, "Float overflow", yytext, "");
522 yyextra->warning(*yylloc, "Integer overflow", yytext, "")
    [all...]
glslang_lex.cpp 161 #define yyextra yyg->yyextra_r macro
    [all...]
  /external/libpcap/
scanner.l 302 bpf_error(yyextra, "%s not supported", yytext);
388 bpf_error(yyextra, "malloc");
392 bpf_error(yyextra, "malloc");
396 yylval->s = sdup(yyextra, (char *)yytext); return HID; }
404 bpf_error(yyextra, "bogus IPv6 address %s", yytext);
407 yylval->s = sdup(yyextra, (char *)yytext); return HID6;
410 bpf_error(yyextra, "IPv6 address %s not supported", yytext);
413 {B}:+({B}:+)+ { bpf_error(yyextra, "bogus ethernet address %s", yytext); }
439 yylval->s = sdup(yyextra, (char *)yytext); return ID; }
440 "\\"[^ !()\n\t]+ { yylval->s = sdup(yyextra, (char *)yytext + 1); return ID;
    [all...]
scanner.c 139 #define yyextra yyg->yyextra_r macro
    [all...]
scanner.h 133 #define yyextra yyg->yyextra_r macro
  /external/mesa3d/src/mesa/program/
program_lexer.l 33 #define require_ARB_vp (yyextra->mode == ARB_vertex)
34 #define require_ARB_fp (yyextra->mode == ARB_fragment)
35 #define require_shadow (yyextra->option.Shadow)
36 #define require_rect (yyextra->option.TexRect)
37 #define require_texarray (yyextra->option.TexArray)
48 return handle_ident(yyextra, yytext, yylval); \
66 _mesa_parse_instruction_suffix(yyextra, \
72 return handle_ident(yyextra, yytext, yylval); \
308 [_a-zA-Z$][_a-zA-Z0-9$]* { return handle_ident(yyextra, yytext, yylval); }
  /external/skia/src/sksl/
lex.layout.c 125 #define yyextra yyg->yyextra_r macro
    [all...]
lex.sksl.c 125 #define yyextra yyg->yyextra_r macro
    [all...]

Completed in 104 milliseconds