• Home
  • Raw
  • Download

Lines Matching refs:self

68     JSHandle<JSTaggedValue> self = GetThis(argv);  in Add()  local
69 if (!self->IsJSAPITreeSet()) { in Add()
74 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in Add()
86 JSHandle<JSTaggedValue> self = GetThis(argv); in Remove() local
87 if (!self->IsJSAPITreeSet()) { in Remove()
91 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in Remove()
102 JSHandle<JSTaggedValue> self(GetThis(argv)); in Has() local
103 if (!self->IsJSAPITreeSet()) { in Has()
108 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in Has()
121 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetFirstValue() local
122 if (!self->IsJSAPITreeSet()) { in GetFirstValue()
126 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in GetFirstValue()
136 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetLastValue() local
137 if (!self->IsJSAPITreeSet()) { in GetLastValue()
141 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in GetLastValue()
151 JSHandle<JSTaggedValue> self(GetThis(argv)); in Clear() local
152 if (!self->IsJSAPITreeSet()) { in Clear()
156 JSAPITreeSet::Clear(thread, JSHandle<JSAPITreeSet>::Cast(self)); in Clear()
166 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetLowerValue() local
167 if (!self->IsJSAPITreeSet()) { in GetLowerValue()
171 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in GetLowerValue()
184 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetHigherValue() local
185 if (!self->IsJSAPITreeSet()) { in GetHigherValue()
189 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in GetHigherValue()
204 JSHandle<JSTaggedValue> self(GetThis(argv)); in PopFirst() local
205 if (!self->IsJSAPITreeSet()) { in PopFirst()
209 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in PopFirst()
219 JSHandle<JSTaggedValue> self(GetThis(argv)); in PopLast() local
220 if (!self->IsJSAPITreeSet()) { in PopLast()
224 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in PopLast()
234 JSHandle<JSTaggedValue> self = GetThis(argv); in IsEmpty() local
235 if (!self->IsJSAPITreeSet()) { in IsEmpty()
238 JSHandle<JSAPITreeSet> set = JSHandle<JSAPITreeSet>::Cast(self); in IsEmpty()
247 JSHandle<JSTaggedValue> self = GetThis(argv); in Values() local
248 …JSHandle<JSTaggedValue> iter = JSAPITreeSetIterator::CreateTreeSetIterator(thread, self, Iteration… in Values()
257 JSHandle<JSTaggedValue> self = GetThis(argv); in Entries() local
259 JSAPITreeSetIterator::CreateTreeSetIterator(thread, self, IterationKind::KEY_AND_VALUE); in Entries()
270 JSHandle<JSTaggedValue> self = GetThis(argv); in ForEach() local
271 if (!self->IsJSAPITreeSet()) { in ForEach()
283 JSHandle<JSAPITreeSet> tset = JSHandle<JSAPITreeSet>::Cast(self); in ForEach()
297 arguments->MakeArgv(key, key, self); in ForEach()
320 JSHandle<JSTaggedValue> self(GetThis(argv)); in GetLength() local
321 if (!self->IsJSAPITreeSet()) { in GetLength()
325 int count = JSHandle<JSAPITreeSet>::Cast(self)->GetSize(); in GetLength()