Searched defs:DummyFile (Results 1 – 2 of 2) sorted by relevance
23 struct DummyFile : public vfs::File { struct24 vfs::Status S;25 explicit DummyFile(vfs::Status S) : S(S) {} in DummyFile() argument26 llvm::ErrorOr<vfs::Status> status() override { return S; } in status()28 getBuffer(const Twine &Name, int64_t FileSize, bool RequiresNullTerminator, in getBuffer()32 virtual std::error_code close() override { return std::error_code(); } in close()
351 class DummyFile(object): class