Lines Matching defs:self
53 JSHandle<JSTaggedValue> self = GetThis(argv);
55 if (!self->IsJSAPIQueue()) {
56 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) {
57 self = JSHandle<JSTaggedValue>(thread, JSHandle<JSProxy>::Cast(self)->GetTarget());
66 JSAPIQueue::Add(thread, JSHandle<JSAPIQueue>::Cast(self), value);
76 JSHandle<JSTaggedValue> self = GetThis(argv);
78 if (!self->IsJSAPIQueue()) {
79 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) {
80 self = JSHandle<JSTaggedValue>(thread, JSHandle<JSProxy>::Cast(self)->GetTarget());
88 JSTaggedValue value = JSAPIQueue::GetFirst(thread, JSHandle<JSAPIQueue>::Cast(self));
99 JSHandle<JSTaggedValue> self = GetThis(argv);
101 if (!self->IsJSAPIQueue()) {
102 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) {
103 self = JSHandle<JSTaggedValue>(thread, JSHandle<JSProxy>::Cast(self)->GetTarget());
111 JSTaggedValue value = JSAPIQueue::Pop(thread, JSHandle<JSAPIQueue>::Cast(self));
181 JSHandle<JSTaggedValue> self = GetThis(argv);
182 if (!self->IsJSAPIQueue()) {
183 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) {
184 self = JSHandle<JSTaggedValue>(thread, JSHandle<JSProxy>::Cast(self)->GetTarget());
191 JSHandle<JSAPIQueueIterator> iter(factory->NewJSAPIQueueIterator(JSHandle<JSAPIQueue>::Cast(self)));
201 JSHandle<JSTaggedValue> self = GetThis(argv);
203 if (!self->IsJSAPIQueue()) {
204 if (self->IsJSProxy() && JSHandle<JSProxy>::Cast(self)->GetTarget().IsJSAPIQueue()) {
205 self = JSHandle<JSTaggedValue>(thread, JSHandle<JSProxy>::Cast(self)->GetTarget());
213 uint32_t length = JSHandle<JSAPIQueue>::Cast(self)->GetSize();