Home | History | Annotate | Download | only in Serialization

Lines Matching defs:File

5 // This file is distributed under the University of Illinois Open Source
10 // This file defines the GlobalModuleIndex class, which manages a global index
62 /// \brief Buffer containing the index file, which is lazily accessed so long
73 /// \brief Information about a given module file.
75 ModuleInfo() : File(), Size(), ModTime() { }
77 /// \brief The module file, once it has been resolved.
78 ModuleFile *File;
80 /// \brief The module file name.
83 /// \brief Size of the module file at the time the global index was built.
86 /// \brief Modification time of the module file at the time the global
99 /// file name.
142 /// \brief Read a global index file for the given directory.
163 /// \brief Retrieve the set of module files on which the given module file
165 void getModuleDependencies(ModuleFile *File,
182 /// \brief Note that the given module file has been loaded.
185 /// module file, and true otherwise.
186 bool loadedModuleFile(ModuleFile *File);
196 /// \param FileMgr The file manager to use to load module files.