Lines Matching defs:files

37 # This is a list of files to exclude from building, using DepTool
54 2. Run deptool. This will take a few seconds to scan all of your files
55 and make its dependency lists. Three files are created:
56 make.files: lists all of the files that were considered
61 and recursively determines which other files include it, and how
156 * Used to list files ref'd by this one, in the case of allFiles,
157 * or other files which reference this one, such as refFiles;
159 std::map<String, FileRec *> files;
178 files = other.files;
206 * to see which files for directories to leave out.
217 * Calls the other two methods, then generates the files.
347 * A list of all files which will be processed for
353 * A list of .h files, with a list for each one
354 * of which other files include them.
359 * The list of .o files, and the
548 * Recursively list all files and directories under 'dirname', except
666 // Note which files in the exclude list were not used.
766 frec->files[iname] = other;
784 frec->files[dfname] = other;
880 * Recursively check include lists to find all files in allFiles to which
888 for (iter=include->files.begin() ; iter!=include->files.end() ; iter++)
891 if (ofile->files.find(fname) != ofile->files.end())
897 ofile->files[fname] = child;
909 * Recursively check include lists to find all files in allFiles which
922 frec->files.find(fname);
923 if (fiter != frec->files.end())
926 if (hfile->files.find(cfname) != hfile->files.end())
933 hfile->files[cfname] = child;
977 ofile->files[cFileName] = include;
1027 * Save the allFiles list. This is basically all files in a directory
1035 FILE *f = fopen("make.files", "w");
1038 trace("cannot open 'make.files' for writing");
1041 fprintf(f, "## File: make.files\n");
1175 for (citer=frec->files.begin() ; citer!=frec->files.end() ; citer++)
1251 for (citer=frec->files.begin() ; citer!=frec->files.end() ; citer++)
1274 * Save the "reference" file, which lists each include file, and any files
1311 for (citer=frec->files.begin() ; citer!=frec->files.end() ; citer++)
1349 for (citer=frec->files.begin() ; citer!=frec->files.end() ; citer++)