Searched refs:PCHStorage (Results 1 – 2 of 2) sorted by relevance
53 class PCHStorage; variable131 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 …]
336 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::PCHStorage691 PrecompiledPreamble::PCHStorage::PCHStorage(InMemoryPreamble Memory) in PCHStorage() function in PrecompiledPreamble::PCHStorage696 PrecompiledPreamble::PCHStorage::PCHStorage(PCHStorage &&Other) : PCHStorage() { in PCHStorage() function in PrecompiledPreamble::PCHStorage[all …]