Home
last modified time | relevance | path

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

/external/llvm-project/clang/unittests/Frontend/
DASTUnitTest.cpp116 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFs = in TEST_F() local
118 InMemoryFs->addFile("test.cpp", 0, llvm::MemoryBuffer::getMemBuffer(R"cpp( in TEST_F()
122 InMemoryFs->addFile("m.modulemap", 0, llvm::MemoryBuffer::getMemBuffer(R"cpp( in TEST_F()
129 InMemoryFs->addFile("Textual.h", 0, llvm::MemoryBuffer::getMemBuffer(R"cpp( in TEST_F()
139 FileManager *FileMgr = new FileManager(FileSystemOptions(), InMemoryFs); in TEST_F()
/external/llvm-project/clang-tools-extra/clang-tidy/
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()
DExpandModularHeadersPPCallbacks.h127 llvm::IntrusiveRefCntPtr<llvm::vfs::InMemoryFileSystem> InMemoryFs; variable