Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DPrecompiledPreamble.h53 class PCHStorage; variable
131 PrecompiledPreamble(PCHStorage Storage, std::vector<char> PreambleBytes,
171 class PCHStorage {
175 PCHStorage() = default;
176 PCHStorage(TempPCHFile File);
177 PCHStorage(InMemoryPreamble Memory);
179 PCHStorage(const PCHStorage &) = delete;
180 PCHStorage &operator=(const PCHStorage &) = delete;
182 PCHStorage(PCHStorage &&Other);
183 PCHStorage &operator=(PCHStorage &&Other);
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp336 PCHStorage Storage = StoreInMemory ? PCHStorage(InMemoryPreamble()) in Build()
337 : PCHStorage(std::move(*TempFile)); in Build()
476 case PCHStorage::Kind::Empty: in getSize()
480 case PCHStorage::Kind::InMemory: in getSize()
482 case PCHStorage::Kind::TempFile: { in getSize()
621 PCHStorage Storage, std::vector<char> PreambleBytes, in PrecompiledPreamble()
629 assert(this->Storage.getKind() != PCHStorage::Kind::Empty); in PrecompiledPreamble()
686 PrecompiledPreamble::PCHStorage::PCHStorage(TempPCHFile File) in PCHStorage() function in PrecompiledPreamble::PCHStorage
691 PrecompiledPreamble::PCHStorage::PCHStorage(InMemoryPreamble Memory) in PCHStorage() function in PrecompiledPreamble::PCHStorage
696 PrecompiledPreamble::PCHStorage::PCHStorage(PCHStorage &&Other) : PCHStorage() { in PCHStorage() function in PrecompiledPreamble::PCHStorage
[all …]