Home | History | Annotate | Download | only in Basic

Lines Matching refs:File

5 // This file is distributed under the University of Illinois Open Source
10 /// \file
68 /// \brief The AST file if this is a top-level module which has a
69 /// corresponding serialized AST file, or null otherwise.
96 /// \brief Whether this module was loaded from a module file.
157 /// \brief The location of the 'export' keyword in the module map file.
272 /// \brief The serialized AST file for this module, if one was created.
277 /// \brief Set the serialized AST file for the top-level module of this module.
278 void setASTFile(const FileEntry *File) {
279 assert((getASTFile() == 0 || getASTFile() == File) && "file path changed");
280 getTopLevelModule()->ASTFile = File;
300 void addTopHeader(const FileEntry *File) {
301 assert(File);
302 TopHeaders.insert(File);