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

  /external/checkpolicy/
parse_util.c 25 extern FILE *yyin;
38 yyin = fopen(file, "r");
39 if (!yyin) {
60 rewind(yyin);
63 yyrestart(yyin);
75 fclose(yyin);
  /ndk/sources/host-tools/nawk-20071023/
main.c 42 extern FILE *yyin; /* lex input file */
70 yyin = NULL;
168 if (yyin == NULL) {
172 yyin = stdin;
173 else if ((yyin = fopen(pfile[curpfile], "r")) == NULL)
177 if ((c = getc(yyin)) != EOF)
179 if (yyin != stdin)
180 fclose(yyin);
181 yyin = NULL;
lex.c 542 FILE *yyin = 0; variable
  /external/bison/examples/calc++/
calc++-scanner.cc 181 #define YY_NEW_FILE yyrestart(yyin )
210 extern FILE *yyin, *yyout;
299 * just pointing yyin at a new input file.
351 * instead of setting up a fresh yyin. A bit of a hack ...
389 yy_create_buffer(yyin,YY_BUF_SIZE ); \
399 yy_create_buffer(yyin,YY_BUF_SIZE ); \
406 /* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */
416 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; variable
703 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
707 if ( c == EOF && ferror( yyin ) ) \
    [all...]
  /system/core/sh/
arith_lex.c 129 #define YY_NEW_FILE yyrestart(yyin )
145 extern FILE *yyin, *yyout;
237 * just pointing yyin at a new input file.
275 * instead of setting up a fresh yyin. A bit of a hack ...
308 yy_create_buffer(yyin,YY_BUF_SIZE ); \
318 yy_create_buffer(yyin,YY_BUF_SIZE ); \
332 FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; variable
596 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
600 if ( c == EOF && ferror( yyin ) ) \
607 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin))
    [all...]
init.c 174 #define YY_NEW_FILE yyrestart(yyin )
466 #define YY_NEW_FILE yyrestart(yyin )
758 #define YY_NEW_FILE yyrestart(yyin )
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Tokenizer.cpp 139 #define yyin yyg->yyin_r macro
165 #define YY_NEW_FILE pprestart(yyin ,yyscanner )
268 * just pointing yyin at a new input file.
319 pp_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
329 pp_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
710 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
714 if ( c == EOF && ferror( yyin ) ) \
721 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
729 clearerr(yyin); \
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glcpp-lex.c 130 #define yyin yyg->yyin_r macro
156 #define YY_NEW_FILE glcpp_restart(yyin ,yyscanner )
267 * just pointing yyin at a new input file.
318 glcpp__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
328 glcpp__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
798 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
802 if ( c == EOF && ferror( yyin ) ) \
809 while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
817 clearerr(yyin); \
    [all...]
glsl_lexer.cc 130 #define yyin yyg->yyin_r macro
156 #define YY_NEW_FILE _mesa_glsl_restart(yyin ,yyscanner )
267 * just pointing yyin at a new input file.
318 _mesa_glsl__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
328 _mesa_glsl__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
    [all...]
lex.yy.c 130 #define yyin yyg->yyin_r macro
156 #define YY_NEW_FILE _mesa_program_restart(yyin ,yyscanner )
267 * just pointing yyin at a new input file.
318 _mesa_program__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
328 _mesa_program__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
glslang_lex.cpp 151 #define yyin yyg->yyin_r macro
177 #define YY_NEW_FILE yyrestart(yyin ,yyscanner )
293 * just pointing yyin at a new input file.
344 yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
354 yy_create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \
    [all...]
  /frameworks/base/tools/aidl/
aidl_language_l.l 189 yyin = fopen(filename, "r");
190 if (yyin) {
  /external/mdnsresponder/mDNSShared/
dnsextd_parser.y 399 extern FILE * yyin;
445 yyin = fopen( file, "r" );
446 require_action( yyin, exit, err = 0 );
  /external/ipsec-tools/src/racoon/
cftoken.l 645 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
738 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
749 yyin = fopen(path, "r");
750 if (yyin == NULL) {
760 incstack[incstackp].fp = yyin;
  /external/bison/src/
scan-gram.l 56 #define YY_INPUT(buf, result, size) ((result) = no_cr_read (yyin, buf, size))
scan-skel.c 20 #define yyin skel_in macro
    [all...]
scan-code.c 20 #define yyin code_in macro
    [all...]
scan-gram.c 20 #define yyin gram_in macro
    [all...]
  /external/elfutils/libcpu/
i386_lex.c 15 #define yyin i386_in macro
    [all...]
  /external/elfutils/src/
ldlex.c 16 #define yyin ldin macro
    [all...]

Completed in 922 milliseconds