Searched refs:finput (Results 1 - 25 of 26) sorted by relevance

12

/haiku-buildtools/legacy/gcc/gcc/
H A Dinput.h32 extern FILE *finput;
H A Dc-lang.c66 ungetc (check_newline (), finput); local
H A Dc-lex.c54 FILE *finput; variable
75 #define GETC() getc (finput)
76 #define UNGETC(c) ungetc (c, finput)
189 finput = stdin;
193 finput = fopen (filename, "r");
194 if (finput == 0)
198 setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE);
225 fclose (finput);
H A Dc-tree.h208 #define GET_DIRECTIVE_LINE() get_directive_line (finput)
/haiku-buildtools/legacy/gcc/gcc/f/
H A Dparse.c37 FILE *finput;
79 ffe_file (wf, finput);
H A Dlex.c55 static int ffelex_get_directive_line_ (char **text, FILE *finput);
573 ffelex_getc_ (FILE *finput)
578 return getc (finput);
585 return getc (finput);
591 ffelex_cfebackslash_ (int *use_d, int *d, FILE *finput)
593 register int c = getc (finput);
615 c = getc (finput);
660 c = getc (finput);
740 ffelex_cfelex_ (ffelexToken *xtoken, FILE *finput, int c)
772 c = ffelex_getc_ (finput);
572 ffelex_getc_(FILE *finput) argument
590 ffelex_cfebackslash_(int *use_d, int *d, FILE *finput) argument
739 ffelex_cfelex_(ffelexToken *xtoken, FILE *finput, int c) argument
998 ffelex_get_directive_line_(char **text, FILE *finput) argument
1098 ffelex_hash_(FILE *finput) argument
3985 ffelex_hash_kludge(FILE *finput) argument
[all...]
H A Dcom.c238 FILE *finput; variable
14937 finput = stdin;
14941 finput = fopen (filename, "r");
14942 if (finput == 0)
14946 setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE);
14962 fclose (finput);
15051 ffelex_hash_kludge (finput);
/haiku-buildtools/legacy/gcc/gcc/java/
H A Djv-scan.c35 FILE *finput, *out; variable
117 if ( (finput = fopen (argv [i], "r")) )
124 fclose (finput);
H A Dlang.c255 FILE *finput; variable
264 finput = stdin;
316 fclose (finput);
H A Djcf-parse.c580 if (!(finput = fopen (input_filename, "r")))
584 if (fclose (finput))
870 /* Set new input_filename and finput */
871 finput = main_jcf->read_state;
873 setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE),
992 jcf->read_state = finput;
H A Dlex.c279 for (base = ftell (finput), i = base-2; c == '\\';)
281 fseek (finput, i--, SEEK_SET);
284 fseek (finput, base, SEEK_SET);
H A Dlex.h32 extern FILE *finput;
103 #define UNGETC(c) ungetc(c, finput)
104 #define GETC() getc(finput)
H A Dparse-scan.c127 extern FILE *finput, *out;
H A Dparse.h589 FILE *finput; /* Current file input stream */ member in struct:parser_ctxt
H A Dparse-scan.y47 extern FILE *finput, *out;
H A Dparse.c5008 ctxp->finput = finput;
5018 finput = ctxp->finput;
5047 finput = ctxp->finput;
H A Dparse.y2351 ctxp->finput = finput;
2361 finput = ctxp->finput;
2390 finput = ctxp->finput;
/haiku-buildtools/legacy/gcc/gcc/ch/
H A Dlex.c48 FILE* finput;
206 finput = stdin;
210 finput = fopen (filename, "r");
211 if (finput == 0)
215 setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE);
290 if (finput != NULL)
291 fclose (finput);
338 c = getc(finput);
602 if (finput == NULL)
605 if (finput !
47 FILE* finput; variable
2218 ungetc (check_newline (), finput); local
[all...]
H A Dlang.c51 extern FILE* finput;
296 ungetc (check_newline (), finput);
294 ungetc (check_newline (), finput); local
/haiku-buildtools/legacy/gcc/gcc/cp/
H A Dinput.c34 extern FILE *finput;
61 #define GETC() getc (finput)
H A Dlex.c117 FILE *finput; variable
505 finput = stdin;
509 finput = fopen (filename, "r");
510 if (finput == 0)
514 setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE);
887 fclose (finput);
H A Dcp-tree.h2170 #define GET_DIRECTIVE_LINE() get_directive_line (finput)
/haiku-buildtools/gcc/gcc/java/
H A Djcf-parse.c205 FILE *finput = fopen (fsource_filename, "r");
209 gcc_assert (finput);
212 while (! feof (finput))
214 int ch = getc (finput);
228 rewind (finput);
242 int ch = getc (finput);
265 fclose (finput);
1765 FILE *finput = NULL;
1775 finput = fopen (main_input_filename, "r");
1776 if (finput
204 FILE *finput = fopen (fsource_filename, "r"); local
1761 FILE *finput = NULL; local
2183 process_zip_dir(FILE *finput) argument
[all...]
H A Dlang.c316 FILE *finput; variable
613 finput = stdin;
H A Djava-tree.h1530 extern FILE *finput;

Completed in 503 milliseconds

12