Lines Matching refs:heap_
273 Heap heap_; member
365 delete reinterpret_cast<T*>(storage.heap_); // NOLINT: cast in Destroy()
366 storage.heap_ = nullptr; in Destroy()
370 dest.heap_ = new T(*reinterpret_cast<T*>(source.heap_)); // NOLINT: cast in Copy()
374 dest.heap_ = source.heap_; in Move()
375 source.heap_ = nullptr; in Move()
379 return storage.heap_; in GetConstPtr()
383 return storage.heap_; in GetPtr()
421 storage_.heap_ = new DecayedValueType(std::forward<Args>(args)...); in DoEmplace()
422 ptr = reinterpret_cast<DecayedValueType*>(storage_.heap_); in DoEmplace()
447 : reinterpret_cast<DecayedValueType*>(storage_.heap_)); in Cast()
460 : reinterpret_cast<const DecayedValueType*>(storage_.heap_)); in Cast()