Lines Matching full:attributes
173 // Reflect.defineProperty (target, propertyKey, attributes)
183 // attributes in HWTEST_F_L0()
184 JSHandle<JSObject> attributes = in HWTEST_F_L0() local
186 // attributes value in HWTEST_F_L0()
190 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), valueKey, value); in HWTEST_F_L0()
191 // attributes writable in HWTEST_F_L0()
194 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), writableKey, writable); in HWTEST_F_L0()
195 // attributes enumerable in HWTEST_F_L0()
198 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), enumerableKey, enumerable); in HWTEST_F_L0()
199 // attributes configurable in HWTEST_F_L0()
202 … JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), configurableKey, configurable); in HWTEST_F_L0()
209 ecmaRuntimeCallInfo->SetCallArg(2, JSTaggedValue(*attributes)); in HWTEST_F_L0()