Lines Matching full:attributes
167 // Reflect.defineProperty (target, propertyKey, attributes)
177 // attributes in HWTEST_F_L0()
178 JSHandle<JSObject> attributes = in HWTEST_F_L0() local
180 // attributes value in HWTEST_F_L0()
184 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), valueKey, value); in HWTEST_F_L0()
185 // attributes writable in HWTEST_F_L0()
188 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), writableKey, writable); in HWTEST_F_L0()
189 // attributes enumerable in HWTEST_F_L0()
192 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), enumerableKey, enumerable); in HWTEST_F_L0()
193 // attributes configurable in HWTEST_F_L0()
196 … JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), configurableKey, configurable); in HWTEST_F_L0()
203 ecmaRuntimeCallInfo->SetCallArg(2, JSTaggedValue(*attributes)); in HWTEST_F_L0()