Home | History | Annotate | Download | only in Basic

Lines Matching refs:FS

49                          IntrusiveRefCntPtr<vfs::FileSystem> FS)
50 : FS(FS), FileSystemOpts(FSO),
57 if (!FS)
58 this->FS = vfs::getRealFileSystem();
407 llvm::sys::fs::make_absolute(Path);
439 return FS->getBufferForFile(Filename, FileSize,
444 return FS->getBufferForFile(FilePath, FileSize,
451 return FS->getBufferForFile(Filename);
455 return FS->getBufferForFile(FilePath.c_str());
468 return FileSystemStatCache::get(Path, Data, isFile, F,StatCache.get(), *FS);
474 StatCache.get(), *FS);
482 llvm::ErrorOr<vfs::Status> S = FS->status(FilePath.c_str());
526 // FIXME: use llvm::sys::fs::canonical() when it gets implemented
540 llvm::sys::fs::make_absolute(CanonicalNameBuf);
547 // sys::fs::canonical across all the platforms.