Lines Matching refs:FilePath
431 SmallString<128> FilePath(Entry->getName()); in getBufferForFile() local
432 FixupRelativePath(FilePath); in getBufferForFile()
433 return FS->getBufferForFile(FilePath.str(), FileSize, in getBufferForFile()
442 SmallString<128> FilePath(Filename); in getBufferForFile() local
443 FixupRelativePath(FilePath); in getBufferForFile()
444 return FS->getBufferForFile(FilePath.c_str()); in getBufferForFile()
459 SmallString<128> FilePath(Path); in getStatValue() local
460 FixupRelativePath(FilePath); in getStatValue()
462 return FileSystemStatCache::get(FilePath.c_str(), Data, isFile, F, in getStatValue()
468 SmallString<128> FilePath(Path); in getNoncachedStatValue() local
469 FixupRelativePath(FilePath); in getNoncachedStatValue()
471 llvm::ErrorOr<vfs::Status> S = FS->status(FilePath.c_str()); in getNoncachedStatValue()