/arkcompiler/toolchain/tooling/test/testcases/ |
D | js_container_test.h | 122 GetProperties(scope); in SendNotification() 132 void GetProperties(panda::ecmascript::tooling::Scope *scope) in GetProperties() function 138 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {}); in GetProperties() 149 runtime_->GetProperties(params, &outPropertyDescInner, {}, {}, {}); in GetProperties()
|
D | js_variable_second_test.h | 125 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {}); in SendNotification() 136 runtime_->GetProperties(params, &outPropertyDescInner, {}, {}, {}); in SendNotification()
|
D | js_variable_first_test.h | 125 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {}); in SendNotification() 136 runtime_->GetProperties(params, &outPropertyDescInner, {}, {}, {}); in SendNotification()
|
D | js_module_variable_test.h | 140 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {}); in GetModuleProperties() 151 runtime_->GetProperties(params, &outPropertyDescInner, {}, {}, {}); in GetModuleProperties()
|
D | js_local_variable_scope_test.h | 122 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {}); in SendNotification()
|
D | js_dropframe_test.h | 147 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {}); in SendNotification()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | object_operator.cpp | 306 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in LookupGlobal() 333 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in LookupPropertyInlinedProps() 350 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in LookupPropertyInlinedProps() 408 JSHandle<GlobalDictionary> dictHandle(thread_, receiver->GetProperties()); in TransitionForAttributeChanged() 419 auto dict = NameDictionary::Cast(receiver->GetProperties().GetTaggedObject()); in TransitionForAttributeChanged() 498 auto *dict = GlobalDictionary::Cast(receiver->GetProperties().GetTaggedObject()); in UpdateDataValue() 521 …JSMutableHandle<TaggedArray> properties(thread_, TaggedArray::Cast(receiver->GetProperties().GetTa… in UpdateDataValue() 544 properties.Update(JSHandle<JSArray>(receiver)->GetProperties()); in UpdateDataValue() 596 … TaggedArray *properties = TaggedArray::Cast(receiver->GetProperties().GetTaggedObject()); in WriteDataProperty() 786 JSMutableHandle<GlobalDictionary> dict(thread_, obj->GetProperties()); in AddPropertyInternal()
|
D | lexical_env.h | 49 JSTaggedValue GetProperties(uint32_t index) const in GetProperties() function
|
D | js_object-inl.h | 218 return TaggedArray::Cast(GetProperties().GetTaggedObject())->IsDictionaryMode(); in IsPropertiesDict() 312 TaggedArray *array = TaggedArray::Cast(GetProperties().GetTaggedObject()); in GetProperty() 322 TaggedArray *array = TaggedArray::Cast(GetProperties().GetTaggedObject()); in SetProperty()
|
D | layout_info.h | 64 inline Properties *GetProperties() const in GetProperties() function
|
D | js_object.cpp | 147 JSHandle<TaggedArray> array(thread, receiver->GetProperties()); in TransitionToDictionary() 287 JSHandle<TaggedArray> array(thread, obj->GetProperties()); in DeletePropertyInternal() 290 JSHandle<GlobalDictionary> dictHandle(thread, obj->GetProperties()); in DeletePropertyInternal() 320 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeys() 335 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeys() 344 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeysByFilter() 359 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeysByFilter() 368 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeys() 375 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeys() 386 GlobalDictionary *dict = GlobalDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllEnumKeys() [all …]
|
D | object_fast_operator-inl.h | 68 …ASSERT(!TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject())->IsDictionary… in GetPropertyByName() 88 … TaggedArray *array = TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject()); in GetPropertyByName() 138 …ASSERT(!TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject())->IsDictionary… in SetPropertyByName() 174 …TaggedArray *properties = TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObjec… in SetPropertyByName() 505 JSMutableHandle<TaggedArray> array(thread, objHandle->GetProperties()); in AddPropertyByName()
|
D | layout_info-inl.h | 103 Span<struct Properties> sp(GetProperties(), propertiesNumber); in FindElementWithCache()
|
/arkcompiler/toolchain/tooling/test/ |
D | runtime_impl_test.cpp | 144 dispatcherImpl->GetProperties(request); in HWTEST_F_L0() 149 dispatcherImpl->GetProperties(request1); in HWTEST_F_L0() 169 dispatcherImpl->GetProperties(request); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | object_factory_test.cpp | 80 EXPECT_EQ(newObj->GetProperties(), thread->GlobalConstants()->GetEmptyArray()); in HWTEST_F_L0() 115 EXPECT_EQ(newFun->GetProperties(), thread->GlobalConstants()->GetEmptyArray()); in HWTEST_F_L0()
|
D | object_operator_test.cpp | 425 JSMutableHandle<GlobalDictionary> receiverDict(thread, handleReceiver->GetProperties()); in HWTEST_F_L0() 663 JSMutableHandle<GlobalDictionary> holderDict(thread, handleGlobalObject->GetProperties()); in HWTEST_F_L0() 677 … auto *resultDict = GlobalDictionary::Cast(handleGlobalObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 709 … TaggedArray *resultElements1 = TaggedArray::Cast(handleObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 715 … TaggedArray *resultElements2 = TaggedArray::Cast(handleObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 770 JSMutableHandle<GlobalDictionary> globalDict(thread, handleGlobalObject->GetProperties()); in HWTEST_F_L0() 781 auto resultDict = GlobalDictionary::Cast(handleGlobalObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 810 auto resultDict = NameDictionary::Cast(handleObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 1019 JSMutableHandle<GlobalDictionary> globalDict(thread, handleGlobalObject->GetProperties()); in HWTEST_F_L0() 1030 auto resultDict = GlobalDictionary::Cast(handleGlobalObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() [all …]
|
/arkcompiler/toolchain/tooling/agent/ |
D | runtime_impl.h | 40 DispatchResponse GetProperties( 57 void GetProperties(const DispatchRequest &request);
|
D | runtime_impl.cpp | 30 { "getProperties", &RuntimeImpl::DispatcherImpl::GetProperties }, in Dispatch() 66 void RuntimeImpl::DispatcherImpl::GetProperties(const DispatchRequest &request) in GetProperties() function in panda::ecmascript::tooling::RuntimeImpl::DispatcherImpl 78 … DispatchResponse response = runtime_->GetProperties(*params, &outPropertyDesc, &outInternalDescs, in GetProperties() 178 DispatchResponse RuntimeImpl::GetProperties(const GetPropertiesParams ¶ms, in GetProperties() function in panda::ecmascript::tooling::RuntimeImpl
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
D | ic_runtime_stub-inl.h | 290 TaggedArray *array = TaggedArray::Cast(receiver->GetProperties().GetTaggedObject()); in StoreWithTransition() 342 TaggedArray *array = TaggedArray::Cast(receiver->GetProperties().GetTaggedObject()); in StoreField() 353 return TaggedArray::Cast(receiver->GetProperties().GetTaggedObject())->Get(index); in LoadFromField()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
D | dropframe_manager.cpp | 98 … JSTaggedValue value = LexicalEnv::Cast(env.GetTaggedObject())->GetProperties(slot); in MethodEntry()
|
D | debugger_api.h | 74 static Local<JSValueRef> GetProperties(const EcmaVM *ecmaVm, const FrameHandler *frameHandler,
|
/arkcompiler/ets_runtime/ecmascript/base/ |
D | json_stringifier.cpp | 718 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in SerializeKeys() 776 if (obj->GetProperties().IsDictionary()) { in SerializeKeys() 778 propertiesArr = JSHandle<TaggedArray>(thread_, obj->GetProperties()); in SerializeKeys()
|
/arkcompiler/toolchain/tooling/backend/ |
D | debugger_executor.cpp | 175 result = DebuggerApi::GetProperties(vm, frameHandler, level, slot); in GetLexicalValue()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
D | fast_runtime_stub-inl.h | 213 TaggedArray *properties = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in GetGlobalOwnProperty()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_lazy_callback.cpp | 233 TaggedArray *array = TaggedArray::Cast(object->GetProperties().GetTaggedObject()); in ITERATE_INTL()
|