Lines Matching refs:self
113 JSTaggedValue JSFunction::PrototypeGetter(JSThread *thread, const JSHandle<JSObject> &self) in PrototypeGetter() argument
115 JSHandle<JSFunction> func = JSHandle<JSFunction>::Cast(self); in PrototypeGetter()
120 return JSFunction::Cast(*self)->GetFunctionPrototype(); in PrototypeGetter()
123 bool JSFunction::PrototypeSetter(JSThread *thread, const JSHandle<JSObject> &self, const JSHandle<J… in PrototypeSetter() argument
126 JSHandle<JSFunction> func(self); in PrototypeSetter()
142 JSTaggedValue JSFunction::NameGetter(JSThread *thread, const JSHandle<JSObject> &self) in NameGetter() argument
144 JSMethod *target = JSHandle<JSFunction>::Cast(self)->GetCallTarget(); in NameGetter()
152 if (JSHandle<JSFunction>::Cast(self)->GetFunctionKind() == FunctionKind::GETTER_FUNCTION) { in NameGetter()
155 if (JSHandle<JSFunction>::Cast(self)->GetFunctionKind() == FunctionKind::SETTER_FUNCTION) { in NameGetter()
484 …ntlBoundFunction::IntlNameGetter(JSThread *thread, [[maybe_unused]] const JSHandle<JSObject> &self) in IntlNameGetter() argument
612 bool JSFunction::NameSetter(JSThread *thread, const JSHandle<JSObject> &self, const JSHandle<JSTagg… in NameSetter() argument
615 if (self->IsPropertiesDict()) { in NameSetter()
618 …return self->UpdatePropertyInDictionary(thread, nameString.GetTaggedValue(), value.GetTaggedValue(… in NameSetter()
620 self->SetPropertyInlinedProps(thread, NAME_INLINE_PROPERTY_INDEX, value.GetTaggedValue()); in NameSetter()