/arkcompiler/ets_runtime/ecmascript/ |
H A D | accessor_data.h | 38 return GetSetter() != nullptr; in HasSetter() 63 auto setter = GetSetter(); in HasSetter() 79 auto setFunc = InternalAccessor::ConstCast(this)->GetSetter(); in CallInternalSet()
|
H A D | object_operator.cpp | 457 desc.SetSetter(JSHandle<JSTaggedValue>(thread_, accessor->GetSetter())); in ToPropertyDescriptor() 821 accessor->SetSetter(thread_, desc.GetSetter().GetTaggedValue()); in WriteDataProperty() 823 accessor->SetSetter(thread_, JSHandle<AccessorData>::Cast(value_)->GetSetter()); in WriteDataProperty() 848 accessor->SetSetter(thread_, desc.GetSetter().GetTaggedValue()); in WriteDataProperty()
|
H A D | js_object.cpp | 1046 JSTaggedValue setter = accessor.GetSetter(); in CallSetter() 1378 accessor->SetSetter(thread, desc.GetSetter()); in ValidateAndApplyPropertyDescriptor() 1397 (current.HasSetter() && JSTaggedValue::SameValue(current.GetSetter(), desc.GetSetter())))) { in ValidateAndApplyPropertyDescriptor() 1444 if (desc.HasSetter() && !JSTaggedValue::SameValue(current.GetSetter(), desc.GetSetter())) { in ValidateAndApplyPropertyDescriptor() 2235 bool success = CreateDataProperty(thread, objHandle, setStr, desc.GetSetter()); in FromPropertyDescriptor()
|
H A D | js_object.h | 195 inline JSHandle<JSTaggedValue> GetSetter() const in GetSetter() function in panda::ecmascript::final
|
H A D | js_proxy.cpp | 648 targetDesc.GetSetter()->IsUndefined()) { in SetProperty()
|
H A D | dump.cpp | 1627 os << " - Setter: " << InternalAccessor::ConstCast(this)->GetSetter() << "\n"; in Dump() 1636 GetSetter().DumpTaggedValue(os); in Dump() 5345 vec.emplace_back(CString("setter"), JSTaggedValue(InternalAccessor::ConstCast(this)->GetSetter())); in DumpForSnapshot() 5350 vec.emplace_back(CString("setter"), GetSetter()); in DumpForSnapshot()
|
/arkcompiler/ets_runtime/test/fuzztest/propertyattribute_fuzzer/ |
H A D | propertyattribute_fuzzer.cpp | 72 propertyattribute.GetSetter(vm); in PropertyAttributeSetIsFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | object_operator_third_test.cpp | 149 EXPECT_TRUE(resultAccessorData->GetSetter().IsJSNativePointer()); in HWTEST_F_L0() 406 EXPECT_EQ(resultAccessorData1->GetSetter().GetInt(), 2); in HWTEST_F_L0() 415 EXPECT_EQ(resultAccessorData2->GetSetter().GetInt(), 0); in HWTEST_F_L0()
|
H A D | object_operator_first_test.cpp | 259 EXPECT_TRUE(handleDesc2.GetSetter()->IsUndefined()); in HWTEST_F_L0()
|
H A D | js_object_test.cpp | 757 EXPECT_TRUE(desc.GetSetter()->IsJSFunction()); in HWTEST_F_L0() 775 EXPECT_TRUE(desc.GetSetter()->IsUndefined()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/shared_objects/ |
H A D | js_shared_array.cpp | 317 (desc.HasSetter() && !desc.GetSetter()->IsSharedType())) { in DefineOwnProperty()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
H A D | ic_handler.h | 443 JSTaggedValue setter = accessor->GetSetter(); in StorePrototype()
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | class_info_extractor.cpp | 1121 auto setter = accessor->GetSetter(); in UpdateAccessorFunction()
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | runtime_impl.cpp | 310 properties_[curObjectId_++] = Global<JSValueRef>(vm_, jsProperty.GetSetter(vm_)); in GetProperties()
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | jsnapi_expo.h | 722 Local<JSValueRef> GetSetter(const EcmaVM *vm) const in GetSetter() function in panda::PropertyAttribute
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | ffi_workload.cpp | 1885 HWTEST_F_L0(JSNApiSplTest, GetSetter) in HWTEST_F_L0() 1894 object.GetSetter(vm_); in HWTEST_F_L0() 1897 TEST_TIME(PropertyAttribute::GetSetter); in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.cpp | 1363 debuggerProperty->set_ = RemoteObject::FromTagged(ecmaVm, property.GetSetter(ecmaVm)); in FromProperty()
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 2760 property.SetSetter(JSNApiHelper::ToLocal<JSValueRef>(desc.GetSetter())); in GetOwnProperty()
|