Lines Matching full:attributes
144 // Reflect.defineProperty (target, propertyKey, attributes)
154 // attributes in HWTEST_F_L0()
155 JSHandle<JSObject> attributes = in HWTEST_F_L0() local
157 // attributes value in HWTEST_F_L0()
161 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), valueKey, value); in HWTEST_F_L0()
162 // attributes writable in HWTEST_F_L0()
165 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), writableKey, writable); in HWTEST_F_L0()
166 // attributes enumerable in HWTEST_F_L0()
169 JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), enumerableKey, enumerable); in HWTEST_F_L0()
170 // attributes configurable in HWTEST_F_L0()
173 … JSObject::SetProperty(thread, JSHandle<JSTaggedValue>(attributes), configurableKey, configurable); in HWTEST_F_L0()
180 ecmaRuntimeCallInfo->SetCallArg(2, JSTaggedValue(*attributes)); in HWTEST_F_L0()