Lines Matching refs:Stat
30 auto Stat = std::move(*MaybeStat); in readFile() local
32 auto MaybeBuffer = File->getBuffer(Stat.getName()); in readFile()
38 if (Stat.getSize() != Buffer->getBufferSize()) in readFile()
39 Stat = llvm::vfs::Status::copyWithNewSize(Stat, Buffer->getBufferSize()); in readFile()
41 return TentativeEntry(Stat, std::move(Buffer)); in readFile()
131 llvm::ErrorOr<llvm::vfs::Status> Stat) { in getOrEmplaceEntryForFilename() argument
140 new (EntryStorage.Allocate()) CachedFileSystemEntry(std::move(Stat)); in getOrEmplaceEntryForFilename()
147 llvm::sys::fs::UniqueID UID, llvm::vfs::Status Stat, in getOrEmplaceEntryForUID() argument
158 CachedFileSystemEntry(std::move(Stat), StoredContents); in getOrEmplaceEntryForUID()
244 llvm::ErrorOr<llvm::vfs::Status> Stat = in computeAndStoreResult() local
246 if (!Stat) { in computeAndStoreResult()
248 return Stat.getError(); in computeAndStoreResult()
250 getOrEmplaceSharedEntryForFilename(FilenameForLookup, Stat.getError()); in computeAndStoreResult()
254 if (const auto *Entry = findSharedEntryByUID(*Stat)) in computeAndStoreResult()
258 Stat->isDirectory() ? TentativeEntry(*Stat) : readFile(OriginalFilename); in computeAndStoreResult()
321 llvm::vfs::Status Stat) in DepScanFile() argument
322 : Buffer(std::move(Buffer)), Stat(std::move(Stat)) {} in DepScanFile()
326 llvm::ErrorOr<llvm::vfs::Status> status() override { return Stat; } in status()
338 llvm::vfs::Status Stat; member in __anon6414b5590311::DepScanFile