Home
last modified time | relevance | path

Searched refs:InMemoryFs (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/unittests/Frontend/
H A DASTUnitTest.cpp118 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFs = in TEST_F() local
120 InMemoryFs->addFile("test.cpp", 0, llvm::MemoryBuffer::getMemBuffer(R"cpp( in TEST_F()
124 InMemoryFs->addFile("m.modulemap", 0, llvm::MemoryBuffer::getMemBuffer(R"cpp( in TEST_F()
131 InMemoryFs->addFile("Textual.h", 0, llvm::MemoryBuffer::getMemBuffer(R"cpp( in TEST_F()
143 FileManager *FileMgr = new FileManager(FileSystemOptions(), InMemoryFs); in TEST_F()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/
H A DExpandModularHeadersPPCallbacks.cpp36 llvm::vfs::InMemoryFileSystem &InMemoryFs) { in recordFileContent() argument
46 InMemoryFs.addFile(File->getName(), /*ModificationTime=*/0, in recordFileContent()
71 InMemoryFs(new llvm::vfs::InMemoryFileSystem), in ExpandModularHeadersPPCallbacks()
79 OverlayFS->pushOverlay(InMemoryFs); in ExpandModularHeadersPPCallbacks()
139 Recorder->recordFileContent(It->getFirst(), *It->getSecond(), *InMemoryFs); in parseToLocation()
H A DExpandModularHeadersPPCallbacks.h129 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFs; variable