Lines Matching defs:GetAddress
104 inline uintptr_t GetAddress() const
110 explicit JSHandle(const JSHandle<S> &handle) : address_(handle.GetAddress()) {}
116 return JSHandle<T>(handle.GetAddress());
122 if (GetAddress() == 0U) {
125 return *(reinterpret_cast<JSTaggedValue *>(GetAddress())); // NOLINT(clang-analyzer-core.NullDereference)
131 if (GetAddress() == 0U) {
134 return *reinterpret_cast<JSTaggedType *>(GetAddress()); // NOLINT(clang-analyzer-core.NullDereference)
159 return GetAddress() == 0U;
198 return reinterpret_cast<JSTaggedValue *>(GetAddress());
204 return reinterpret_cast<JSTaggedValue *>(GetAddress());
230 return JSMutableHandle<T>(handle.GetAddress());
235 auto addr = reinterpret_cast<JSTaggedValue *>(this->GetAddress());
243 auto addr = reinterpret_cast<JSTaggedValue *>(this->GetAddress());