Searched refs:GetGetter (Results 1 – 11 of 11) sorted by relevance
/ark/js_runtime/ecmascript/ |
D | accessor_data.h | 49 ASSERT(GetGetter().IsJSNativePointer()); in CallInternalGet() 50 JSNativePointer *getter = JSNativePointer::Cast(GetGetter().GetTaggedObject()); in CallInternalGet()
|
D | object_operator.cpp | 220 desc.SetGetter(JSHandle<JSTaggedValue>(thread_, accessor->GetGetter())); in ToPropertyDescriptor() 486 accessor->SetGetter(thread_, desc.GetGetter().GetTaggedValue()); in WriteDataProperty() 488 accessor->SetGetter(thread_, JSHandle<AccessorData>::Cast(value_)->GetGetter()); in WriteDataProperty() 508 accessor->SetGetter(thread_, desc.GetGetter().GetTaggedValue()); in WriteDataProperty()
|
D | js_object.cpp | 649 JSTaggedValue getter = accessor->GetGetter(); in CallGetter() 878 accessor->SetGetter(thread, desc.GetGetter()); in ValidateAndApplyPropertyDescriptor() 898 … (current.HasGetter() && JSTaggedValue::SameValue(current.GetGetter(), desc.GetGetter()))) && in ValidateAndApplyPropertyDescriptor() 962 … if (desc.HasGetter() && !JSTaggedValue::SameValue(current.GetGetter(), desc.GetGetter())) { in ValidateAndApplyPropertyDescriptor() 1490 bool success = CreateDataProperty(thread, objHandle, getStr, desc.GetGetter()); in FromPropertyDescriptor()
|
D | js_object.h | 160 inline JSHandle<JSTaggedValue> GetGetter() const in GetGetter() function
|
D | js_proxy.cpp | 556 targetDesc.GetGetter()->IsUndefined()) { in GetProperty()
|
D | dump.cpp | 954 os << " - Getter: " << reinterpret_cast<void *>(GetGetter().GetTaggedObject()) << "\n"; in Dump() 960 GetGetter().DumpTaggedValue(thread, os); in Dump() 3055 vec.push_back(std::make_pair(CString("getter"), GetGetter())); in DumpForSnapshot()
|
/ark/js_runtime/ecmascript/tooling/agent/ |
D | runtime_impl.cpp | 203 properties_[curObjectId_++] = Global<JSValueRef>(vm_, jsProperty.GetGetter(vm_)); in GetProperties()
|
/ark/js_runtime/ecmascript/napi/include/ |
D | jsnapi.h | 484 Local<JSValueRef> GetGetter(const EcmaVM *vm) const in GetGetter() function
|
/ark/js_runtime/ecmascript/tests/ |
D | js_object_test.cpp | 779 EXPECT_TRUE(desc.GetGetter()->IsUndefined()); in HWTEST_F_L0()
|
/ark/js_runtime/ecmascript/tooling/base/ |
D | pt_types.cpp | 716 debuggerProperty->get_ = RemoteObject::FromTagged(ecmaVm, property.GetGetter(ecmaVm)); in FromProperty()
|
/ark/js_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 818 property.SetGetter(JSNApiHelper::ToLocal<JSValueRef>(desc.GetGetter())); in GetOwnProperty()
|