Lines Matching full:args
24 bool JSArguments::GetOwnProperty(JSThread *thread, const JSHandle<JSArguments> &args, in GetOwnProperty() argument
27 // 1 ~ 3 Let desc be OrdinaryGetOwnProperty(args, P). in GetOwnProperty()
28 JSObject::OrdinaryGetOwnProperty(thread, JSHandle<JSObject>(args), key, desc); in GetOwnProperty()
44 bool JSArguments::DefineOwnProperty(JSThread *thread, const JSHandle<JSArguments> &args, in DefineOwnProperty() argument
47 // 4.Let allowed be OrdinaryDefineOwnProperty(args, P, Desc). in DefineOwnProperty()
48 bool allowed = JSObject::OrdinaryDefineOwnProperty(thread, JSHandle<JSObject>(args), key, desc); in DefineOwnProperty()
57 OperationResult JSArguments::GetProperty(JSThread *thread, const JSHandle<JSArguments> &args, in GetProperty() argument
62 // on args passing P and Receiver as the arguments. in GetProperty()
63 return JSTaggedValue::GetProperty(thread, JSHandle<JSTaggedValue>::Cast(args), key, receiver); in GetProperty()
66 bool JSArguments::SetProperty(JSThread *thread, const JSHandle<JSArguments> &args, const JSHandle<J… in SetProperty() argument
70 // on args passing P, V and Receiver as the arguments. in SetProperty()
71 …return JSTaggedValue::SetProperty(thread, JSHandle<JSTaggedValue>::Cast(args), key, value, receive… in SetProperty()
74 bool JSArguments::DeleteProperty(JSThread *thread, const JSHandle<JSArguments> &args, in DeleteProperty() argument
79 bool result = JSTaggedValue::DeleteProperty(thread, JSHandle<JSTaggedValue>(args), key); in DeleteProperty()