Home
last modified time | relevance | path

Searched refs:InMemoryFileSystem (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Tooling/
H A DTooling.cpp227 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( in runToolOnCodeWithArgs() local
228 new llvm::vfs::InMemoryFileSystem); in runToolOnCodeWithArgs()
229 OverlayFileSystem->pushOverlay(InMemoryFileSystem); in runToolOnCodeWithArgs()
232 InMemoryFileSystem->addFile(FileName, 0, in runToolOnCodeWithArgs()
237 InMemoryFileSystem->addFile( in runToolOnCodeWithArgs()
448 InMemoryFileSystem(new llvm::vfs::InMemoryFileSystem), in ClangTool()
451 OverlayFileSystem->pushOverlay(InMemoryFileSystem); in ClangTool()
496 InMemoryFileSystem->addFile( in run()
562 InMemoryFileSystem->addFile( in run()
666 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( in buildASTFromCodeWithArgs() local
[all …]
/openbsd-src/gnu/llvm/clang/tools/clang-format/
H A DClangFormat.cpp211 llvm::vfs::InMemoryFileSystem *MemFS) { in createInMemoryFile()
229 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( in fillRanges() local
230 new llvm::vfs::InMemoryFileSystem); in fillRanges()
231 FileManager Files(FileSystemOptions(), InMemoryFileSystem); in fillRanges()
237 InMemoryFileSystem.get()); in fillRanges()
506 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( in format() local
507 new llvm::vfs::InMemoryFileSystem); in format()
508 FileManager Files(FileSystemOptions(), InMemoryFileSystem); in format()
517 InMemoryFileSystem.get()); in format()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DVirtualFileSystem.cpp800 InMemoryFileSystem::InMemoryFileSystem(bool UseNormalizedPaths) in InMemoryFileSystem() function in llvm::vfs::InMemoryFileSystem
808 InMemoryFileSystem::~InMemoryFileSystem() = default;
810 std::string InMemoryFileSystem::toString() const { in toString()
814 bool InMemoryFileSystem::addFile(const Twine &P, time_t ModificationTime, in addFile()
891 bool InMemoryFileSystem::addFile(const Twine &P, time_t ModificationTime, in addFile()
909 bool InMemoryFileSystem::addFileNoOwn( in addFileNoOwn()
928 InMemoryFileSystem::lookupNode(const Twine &P, bool FollowFinalSymlink, in lookupNode()
958 if (SymlinkDepth > InMemoryFileSystem::MaxSymlinkDepth) in lookupNode()
1002 bool InMemoryFileSystem::addHardLink(const Twine &NewLink, in addHardLink()
1021 bool InMemoryFileSystem::addSymbolicLink( in addSymbolicLink()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Tooling/Core/
H A DReplacement.cpp584 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( in applyAllReplacements() local
585 new llvm::vfs::InMemoryFileSystem); in applyAllReplacements()
586 FileManager Files(FileSystemOptions(), InMemoryFileSystem); in applyAllReplacements()
592 InMemoryFileSystem->addFile( in applyAllReplacements()
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/
H A DTooling.h386 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem; variable
/openbsd-src/gnu/llvm/clang/lib/Tooling/DumpTool/
H A DClangSrcLocDump.cpp107 auto *MemFS = new llvm::vfs::InMemoryFileSystem(); in main()
/openbsd-src/gnu/llvm/clang/lib/Testing/
H A DTestAST.cpp105 auto VFS = llvm::makeIntrusiveRefCnt<llvm::vfs::InMemoryFileSystem>(); in TestAST()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DVirtualFileSystem.h501 class InMemoryFileSystem : public FileSystem {
525 explicit InMemoryFileSystem(bool UseNormalizedPaths = true);
526 ~InMemoryFileSystem() override;
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DSourceManager.cpp2364 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFileSystem( in SourceManagerForFile() local
2365 new llvm::vfs::InMemoryFileSystem); in SourceManagerForFile()
2366 InMemoryFileSystem->addFile( in SourceManagerForFile()
2373 std::make_unique<FileManager>(FileSystemOptions(), InMemoryFileSystem); in SourceManagerForFile()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp59 IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> PCHFS( in createVFSOverlayForPreamblePCH()
60 new llvm::vfs::InMemoryFileSystem()); in createVFSOverlayForPreamblePCH()
/openbsd-src/gnu/llvm/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp405 llvm::makeIntrusiveRefCnt<llvm::vfs::InMemoryFileSystem>(); in computeDependencies()