Lines Matching full:attributes
171 // Reflect.defineProperty (target, propertyKey, attributes)
181 // attributes in HWTEST_F_L0()
182 JSHandle<JSObject> attributes = in HWTEST_F_L0() local
184 // attributes value in HWTEST_F_L0()
188 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), valueKey, value); in HWTEST_F_L0()
189 // attributes writable in HWTEST_F_L0()
192 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), writableKey, writable); in HWTEST_F_L0()
193 // attributes enumerable in HWTEST_F_L0()
196 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), enumerableKey, enumerable); in HWTEST_F_L0()
197 // attributes configurable in HWTEST_F_L0()
200 … JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), configurableKey, configurable); in HWTEST_F_L0()
207 ecmaRuntimeCallInfo->SetCallArg(2, JSTaggedValue(*attributes)); in HWTEST_F_L0()