Lines Matching refs:raw_
29 MemberBase() : raw_(nullptr) {}
30 explicit MemberBase(const void* value) : raw_(value) {}
33 const void** GetRawSlot() const { return &raw_; }
34 const void* GetRaw() const { return raw_; }
35 void SetRaw(void* value) { raw_ = value; }
38 return reinterpret_cast<const std::atomic<const void*>*>(&raw_)->load(
42 reinterpret_cast<std::atomic<const void*>*>(&raw_)->store(
46 void ClearFromGC() const { raw_ = nullptr; }
49 // All constructors initialize `raw_`. Do not add a default value here as it
52 mutable const void* raw_;