Lines Matching refs:self
131 JSHandle<JSTaggedValue> self = GetThis(argv); in Set() local
135 if (!self->IsJSMap()) { in Set()
142 JSHandle<JSMap> map(self); in Set()
153 JSHandle<JSTaggedValue> self = GetThis(argv); in Clear() local
157 if (!self->IsJSMap()) { in Clear()
160 JSHandle<JSMap> map(self); in Clear()
170 JSHandle<JSTaggedValue> self = GetThis(argv); in Delete() local
173 if (!self->IsJSMap()) { in Delete()
177 JSHandle<JSMap> map(self); in Delete()
188 JSHandle<JSTaggedValue> self(GetThis(argv)); in Has() local
191 if (!self->IsJSMap()) { in Has()
194 JSMap *jsMap = JSMap::Cast(*JSTaggedValue::ToObject(thread, self)); in Has()
205 JSHandle<JSTaggedValue> self(GetThis(argv)); in Get() local
208 if (!self->IsJSMap()) { in Get()
211 JSMap *jsMap = JSMap::Cast(*JSTaggedValue::ToObject(thread, self)); in Get()
222 JSHandle<JSTaggedValue> self = GetThis(argv); in ForEach() local
225 if (!self->IsJSMap()) { in ForEach()
228 JSHandle<JSMap> map(thread, JSMap::Cast(*JSTaggedValue::ToObject(thread, self))); in ForEach()
270 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetSize() local
273 if (!self->IsJSMap()) { in GetSize()
276 JSMap *jsMap = JSMap::Cast(*JSTaggedValue::ToObject(thread, self)); in GetSize()
286 JSHandle<JSTaggedValue> self = GetThis(argv); in Entries() local
287 …JSHandle<JSTaggedValue> iter = JSMapIterator::CreateMapIterator(thread, self, IterationKind::KEY_A… in Entries()
296 JSHandle<JSTaggedValue> self = GetThis(argv); in Keys() local
297 … JSHandle<JSTaggedValue> iter = JSMapIterator::CreateMapIterator(thread, self, IterationKind::KEY); in Keys()
306 JSHandle<JSTaggedValue> self = GetThis(argv); in Values() local
307 …JSHandle<JSTaggedValue> iter = JSMapIterator::CreateMapIterator(thread, self, IterationKind::VALUE… in Values()