Home
last modified time | relevance | path

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

/external/llvm-project/clang/include/clang/Frontend/
DPrecompiledPreamble.h52 class PCHStorage; variable
130 PrecompiledPreamble(PCHStorage Storage, std::vector<char> PreambleBytes,
170 class PCHStorage {
174 PCHStorage() = default;
175 PCHStorage(TempPCHFile File);
176 PCHStorage(InMemoryPreamble Memory);
178 PCHStorage(const PCHStorage &) = delete;
179 PCHStorage &operator=(const PCHStorage &) = delete;
181 PCHStorage(PCHStorage &&Other);
182 PCHStorage &operator=(PCHStorage &&Other);
[all …]
/external/llvm-project/clang/lib/Frontend/
DPrecompiledPreamble.cpp336 PCHStorage Storage = StoreInMemory ? PCHStorage(InMemoryPreamble()) in Build()
337 : PCHStorage(std::move(*TempFile)); in Build()
484 case PCHStorage::Kind::Empty: in getSize()
488 case PCHStorage::Kind::InMemory: in getSize()
490 case PCHStorage::Kind::TempFile: { in getSize()
629 PCHStorage Storage, std::vector<char> PreambleBytes, in PrecompiledPreamble()
637 assert(this->Storage.getKind() != PCHStorage::Kind::Empty); in PrecompiledPreamble()
694 PrecompiledPreamble::PCHStorage::PCHStorage(TempPCHFile File) in PCHStorage() function in PrecompiledPreamble::PCHStorage
699 PrecompiledPreamble::PCHStorage::PCHStorage(InMemoryPreamble Memory) in PCHStorage() function in PrecompiledPreamble::PCHStorage
704 PrecompiledPreamble::PCHStorage::PCHStorage(PCHStorage &&Other) : PCHStorage() { in PCHStorage() function in PrecompiledPreamble::PCHStorage
[all …]
/external/llvm-project/clang-tools-extra/clangd/tool/
DClangdMain.cpp379 opt<PCHStorageFlag> PCHStorage{ variable
743 switch (PCHStorage) { in main()