• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lib-src/

Lines Matching refs:infile

369 read_c_string_or_comment (infile, printflag, comment, saw_usage)
370 FILE *infile;
378 state.in_file = infile;
387 c = getc (infile);
390 c = getc (infile);
398 c = getc (infile);
401 c = getc (infile);
420 c = getc (infile);
424 c = getc (infile);
430 c = getc (infile);
442 c = getc (infile);
553 FILE *infile;
565 infile = fopen (filename, mode);
568 if (infile == NULL)
578 while (!feof (infile))
584 c = getc (infile);
587 c = getc (infile);
591 c = getc (infile);
594 c = getc (infile);
597 c = getc (infile);
600 c = getc (infile);
603 c = getc (infile);
606 c = getc (infile);
609 c = getc (infile);
616 c = getc (infile);
619 c = getc (infile);
623 c = getc (infile);
626 c = getc (infile);
629 c = getc (infile);
640 c = getc (infile);
644 c = getc (infile);
647 c = read_c_string_or_comment (infile, -1, 0, 0);
671 c = getc (infile);
675 ungetc (c, infile);
677 fscanf (infile, "%d", &minargs);
682 fscanf (infile, "%d", &maxargs);
688 c = getc (infile);
692 c = getc (infile);
695 c = read_c_string_or_comment (infile, 0, 0, 0);
698 c = getc (infile);
701 c = getc (infile);
703 c = getc (infile);
705 c = getc (infile);
709 c = getc (infile);
711 c = getc (infile);
717 && (c = getc (infile),
718 ungetc (c, infile),
729 getc (infile); /* Skip past `*' */
730 c = read_c_string_or_comment (infile, 1, comment, &saw_usage);
751 c = getc (infile);
759 c = getc (infile);
764 *p++ = c = getc (infile);
777 fclose (infile);
819 skip_white (infile)
820 FILE *infile;
824 c = getc (infile);
825 ungetc (c, infile);
829 read_lisp_symbol (infile, buffer)
830 FILE *infile;
836 skip_white (infile);
839 c = getc (infile);
841 *(++fillp) = getc (infile);
844 ungetc (c, infile);
855 skip_white (infile);
862 FILE *infile;
866 infile = fopen (filename, mode);
867 if (infile == NULL)
874 while (!feof (infile))
882 c = getc (infile);
887 c = getc (infile);
891 c = getc (infile);
898 while ((c = getc (infile),
915 saved_string[i] = getc (infile);
922 c = getc (infile);
925 c = getc (infile);
933 read_lisp_symbol (infile, buffer);
940 read_lisp_symbol (infile, buffer);
944 c = getc (infile);
947 if ((c = getc (infile)) != 'i'
948 || (c = getc (infile)) != 'l')
963 c = getc (infile);
964 skip_white (infile);
969 if ((c = getc (infile)) != '"'
970 || (c = getc (infile)) != '\\'
971 || ((c = getc (infile)) != '\n' && c != '\r'))
986 read_lisp_symbol (infile, buffer);
996 c = getc (infile);
1017 c = getc (infile);
1019 read_lisp_symbol (infile, buffer);
1029 read_lisp_symbol (infile, buffer);
1037 read_lisp_symbol (infile, buffer);
1038 c = getc (infile);
1055 c = getc (infile);
1076 c = getc (infile);
1078 read_lisp_symbol (infile, buffer);
1087 read_lisp_symbol (infile, buffer);
1094 read_lisp_symbol (infile, buffer);
1095 c = getc (infile);
1112 c = getc (infile);
1131 c = getc (infile);
1133 read_lisp_symbol (infile, buffer);
1142 read_lisp_symbol (infile, buffer);
1149 read_lisp_symbol (infile, buffer);
1150 c = getc (infile);
1159 skip_white (infile);
1160 if ((c = getc (infile)) != '\"')
1166 read_c_string_or_comment (infile, 0, 0, 0);
1167 skip_white (infile);
1173 if ((c = getc (infile)) != '"'
1174 || (c = getc (infile)) != '\\'
1175 || ((c = getc (infile)) != '\n' && c != '\r'))
1219 read_c_string_or_comment (infile, 1, 0, 0);
1221 fclose (infile);