• Home
  • Raw
  • Download

Lines Matching refs:self

68     JSHandle<JSTaggedValue> self = GetThis(argv);  in Set()  local
70 if (!self->IsJSAPITreeMap()) { in Set()
77 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Set()
90 JSHandle<JSTaggedValue> self(GetThis(argv)); in Get() local
91 if (!self->IsJSAPITreeMap()) { in Get()
95 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Get()
105 JSHandle<JSTaggedValue> self = GetThis(argv); in Remove() local
107 if (!self->IsJSAPITreeMap()) { in Remove()
111 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Remove()
122 JSHandle<JSTaggedValue> self(GetThis(argv)); in HasKey() local
123 if (!self->IsJSAPITreeMap()) { in HasKey()
128 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in HasKey()
141 JSHandle<JSTaggedValue> self(GetThis(argv)); in HasValue() local
142 if (!self->IsJSAPITreeMap()) { in HasValue()
146 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in HasValue()
157 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetFirstKey() local
158 if (!self->IsJSAPITreeMap()) { in GetFirstKey()
162 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetFirstKey()
172 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetLastKey() local
173 if (!self->IsJSAPITreeMap()) { in GetLastKey()
177 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetLastKey()
187 JSHandle<JSTaggedValue> self(GetThis(argv)); in SetAll() local
188 if (!self->IsJSAPITreeMap()) { in SetAll()
197 JSHandle<JSAPITreeMap> dst = JSHandle<JSAPITreeMap>::Cast(self); in SetAll()
213 JSHandle<JSTaggedValue> self(GetThis(argv)); in Clear() local
214 if (!self->IsJSAPITreeMap()) { in Clear()
218 JSAPITreeMap::Clear(thread, JSHandle<JSAPITreeMap>::Cast(self)); in Clear()
228 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetLowerKey() local
229 if (!self->IsJSAPITreeMap()) { in GetLowerKey()
233 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in GetLowerKey()
246 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetHigherKey() local
247 if (!self->IsJSAPITreeMap()) { in GetHigherKey()
251 JSHandle<JSAPITreeMap> map= JSHandle<JSAPITreeMap>::Cast(self); in GetHigherKey()
264 JSHandle<JSTaggedValue> self(GetThis(argv)); in Replace() local
265 if (!self->IsJSAPITreeMap()) { in Replace()
269 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in Replace()
283 JSHandle<JSTaggedValue> self = GetThis(argv); in Keys() local
284 …JSHandle<JSTaggedValue> iter = JSAPITreeMapIterator::CreateTreeMapIterator(thread, self, Iteration… in Keys()
293 JSHandle<JSTaggedValue> self = GetThis(argv); in Values() local
294 …JSHandle<JSTaggedValue> iter = JSAPITreeMapIterator::CreateTreeMapIterator(thread, self, Iteration… in Values()
303 JSHandle<JSTaggedValue> self = GetThis(argv); in Entries() local
305 JSAPITreeMapIterator::CreateTreeMapIterator(thread, self, IterationKind::KEY_AND_VALUE); in Entries()
315 JSHandle<JSTaggedValue> self = GetThis(argv); in ForEach() local
316 if (!self->IsJSAPITreeMap()) { in ForEach()
328 JSHandle<JSAPITreeMap> tmap = JSHandle<JSAPITreeMap>::Cast(self); in ForEach()
344 arguments->MakeArgv(value, key, self); in ForEach()
367 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetLength() local
368 if (!self->IsJSAPITreeMap()) { in GetLength()
371 int count = JSHandle<JSAPITreeMap>::Cast(self)->GetSize(); in GetLength()
381 JSHandle<JSTaggedValue> self = GetThis(argv); in IsEmpty() local
382 if (!self->IsJSAPITreeMap()) { in IsEmpty()
385 JSHandle<JSAPITreeMap> map = JSHandle<JSAPITreeMap>::Cast(self); in IsEmpty()