Lines Matching defs:ifile
20 * A mark is an ifile (input file) plus a position within the file.
27 * because we don't want to create an ifile until the
52 static void cmark(struct mark *m, IFILE ifile, POSITION pos, int ln)
54 m->m_ifile = ifile;
86 static void mark_set_ifile(struct mark *m, IFILE ifile)
88 m->m_ifile = ifile;
330 * Clear the marks associated with a specified ifile.
332 public void unmark(IFILE ifile)
337 if (marks[i].m_ifile == ifile)
342 * Check if any marks refer to a specified ifile vi m_filename
345 public void mark_check_ifile(IFILE ifile)
348 constant char *filename = get_real_filename(ifile);
358 mark_set_ifile(m, ifile);