Home | History | Annotate | Download | only in Lex

Lines Matching refs:DirName

272 /// \param DirName The name of the framework directory.
276 getTopFrameworkDir(FileManager &FileMgr, StringRef DirName,
278 assert(llvm::sys::path::extension(DirName) == ".framework" &&
295 const DirectoryEntry *TopFrameworkDir = FileMgr.getDirectory(DirName);
296 DirName = FileMgr.getCanonicalName(TopFrameworkDir);
299 DirName = llvm::sys::path::parent_path(DirName);
300 if (DirName.empty())
304 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
310 if (llvm::sys::path::extension(DirName) == ".framework") {
311 SubmodulePath.push_back(llvm::sys::path::stem(DirName));
922 StringRef DirName = FileName;
925 DirName = llvm::sys::path::parent_path(DirName);
926 if (DirName.empty())
930 const DirectoryEntry *Dir = FileMgr.getDirectory(DirName);
1041 HeaderSearch::loadModuleMapFile(StringRef DirName) {
1042 if (const DirectoryEntry *Dir = FileMgr.getDirectory(DirName))