Lines Matching defs:slot
168 inline explicit JSHandle(uintptr_t slot) : address_(slot)
171 ASSERT(slot != 0);
172 if ((*reinterpret_cast<JSTaggedValue *>(slot)).IsHeapObject()) {
173 T::Cast((*reinterpret_cast<JSTaggedValue *>(slot)).GetTaggedObject());
184 inline explicit JSHandle(const JSTaggedType *slot) : address_(reinterpret_cast<uintptr_t>(slot)) {}
185 inline explicit JSHandle(const T *const *slot) : address_(reinterpret_cast<uintptr_t>(slot)) {}
222 inline explicit JSMutableHandle(uintptr_t slot) : JSHandle<T>(slot)