/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | object_repository.h | 46 std::vector<PropertyDescriptor> GetProperties(RemoteObjectId id, bool generatePreview); 53 std::vector<PropertyDescriptor> GetProperties(RemoteObjectId id);
|
H A D | object_repository.cpp | 133 std::vector<PropertyDescriptor> ObjectRepository::GetProperties(RemoteObjectId id, bool generatePreview) in GetProperties() function in ark::tooling::inspector::ObjectRepository 137 auto properties = GetProperties(id); in GetProperties() 163 ObjectPreview preview(remobj.GetType(), GetProperties(*valueId)); in CreateObjectPreview() 226 std::vector<PropertyDescriptor> ObjectRepository::GetProperties(RemoteObjectId id) in GetProperties() function in ark::tooling::inspector::ObjectRepository
|
H A D | inspector.h | 95 std::vector<PropertyDescriptor> GetProperties(PtThread thread, RemoteObjectId objectId, bool generatePreview);
|
H A D | inspector.cpp | 89 inspectorServer_.OnCallRuntimeGetProperties(std::bind(&Inspector::GetProperties, this, _1, _2, _3)); in Inspector() 442 std::vector<PropertyDescriptor> Inspector::GetProperties(PtThread thread, RemoteObjectId objectId, bool generatePreview) in GetProperties() function in ark::tooling::inspector::Inspector 454 properties = objectRepository.GetProperties(objectId, generatePreview); in GetProperties()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | object_operator_third_test.cpp | 94 JSMutableHandle<GlobalDictionary> globalDict(thread, handleGlobalObject->GetProperties()); in HWTEST_F_L0() 106 auto resultDict = GlobalDictionary::Cast(handleGlobalObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 134 auto resultDict = NameDictionary::Cast(handleObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 343 JSMutableHandle<GlobalDictionary> globalDict(thread, handleGlobalObject->GetProperties()); in HWTEST_F_L0() 354 auto resultDict = GlobalDictionary::Cast(handleGlobalObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 366 auto resultDict1 = NameDictionary::Cast(handleObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 403 TaggedArray *properties = TaggedArray::Cast(resultObj1->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 412 auto resultDict = NameDictionary::Cast(resultObj2->GetProperties().GetTaggedObject()); in HWTEST_F_L0()
|
H A D | object_operator_second_test.cpp | 207 JSMutableHandle<GlobalDictionary> holderDict(thread, handleGlobalObject->GetProperties()); in HWTEST_F_L0() 221 auto *resultDict = GlobalDictionary::Cast(handleGlobalObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0() 258 TaggedArray *resultElements2 = TaggedArray::Cast(handleObject->GetProperties().GetTaggedObject()); in HWTEST_F_L0()
|
H A D | object_factory_test.cpp | 56 EXPECT_EQ(newObj->GetProperties(), thread->GlobalConstants()->GetEmptyArray()); in HWTEST_F_L0() 91 EXPECT_EQ(newFun->GetProperties(), thread->GlobalConstants()->GetEmptyArray()); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | lexical_env.h | 50 JSTaggedValue GetProperties(uint32_t index) const in GetProperties() function in panda::ecmascript::LexicalEnv
|
H A D | sendable_env.h | 50 JSTaggedValue GetProperties(uint32_t index) const in GetProperties() function in panda::ecmascript::SendableEnv
|
H A D | object_operator.cpp | 514 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in LookupGlobal() 541 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in LookupPropertyInlinedProps() 558 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in LookupPropertyInlinedProps() 618 JSHandle<GlobalDictionary> dictHandle(thread_, receiver->GetProperties()); in TransitionForAttributeChanged() 632 auto dict = NameDictionary::Cast(receiver->GetProperties().GetTaggedObject()); in TransitionForAttributeChanged() 702 auto *dict = GlobalDictionary::Cast(receiver->GetProperties().GetTaggedObject()); in UpdateDataValue() 725 JSMutableHandle<TaggedArray> properties(thread_, TaggedArray::Cast(receiver->GetProperties().GetTaggedObject())); in UpdateDataValue() 749 properties.Update(JSHandle<JSArray>(receiver)->GetProperties()); in UpdateDataValue() 810 TaggedArray *properties = TaggedArray::Cast(receiver->GetProperties().GetTaggedObject()); in WriteDataProperty() 1038 JSMutableHandle<GlobalDictionary> dict(thread_, obj->GetProperties()); in AddPropertyInternal() [all...] |
H A D | object_fast_operator-inl.h | 105 ASSERT(!TaggedArray::Cast(JSObject::Cast(receiver)->GetProperties().GetTaggedObject())->IsDictionaryMode()); in HasOwnProperty() 111 TaggedArray *array = TaggedArray::Cast(JSObject::Cast(receiver)->GetProperties().GetTaggedObject()); in HasOwnProperty() 160 ASSERT(!TaggedArray::Cast(JSObject::Cast(receiver)->GetProperties().GetTaggedObject())->IsDictionaryMode()); in TryFastHasProperty() 228 ASSERT(!TaggedArray::Cast(JSObject::Cast(receiver)->GetProperties().GetTaggedObject())->IsDictionaryMode()); in TryGetPropertyByNameThroughCacheAtLocal() 290 ASSERT(!TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject())->IsDictionaryMode()); in GetPropertyByName() 314 TaggedArray *array = TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject()); in GetPropertyByName() 352 ASSERT(!TaggedArray::Cast(JSObject::Cast(receiver)->GetProperties().GetTaggedObject())->IsDictionaryMode()); in TrySetPropertyByNameThroughCacheAtLocal() 435 ASSERT(!TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject())->IsDictionaryMode()); in SetPropertyByName() 495 TaggedArray *properties = TaggedArray::Cast(JSObject::Cast(holder)->GetProperties().GetTaggedObject()); in SetPropertyByName() 906 JSMutableHandle<TaggedArray> array(thread, objHandle->GetProperties()); in AddPropertyByName() [all...] |
H A D | js_object.cpp | 168 JSHandle<TaggedArray> array(thread, receiver->GetProperties()); in TransitionToDictionary() 298 JSHandle<NameDictionary> properties(thread, obj->GetProperties()); in OptimizeAsFastProperties() 455 JSHandle<TaggedArray> array(thread, obj->GetProperties()); in DeletePropertyInternal() 458 JSHandle<GlobalDictionary> dictHandle(thread, obj->GetProperties()); in DeletePropertyInternal() 485 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeys() 500 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeys() 509 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeysByFilter() 524 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeysByFilter() 533 TaggedArray *array = TaggedArray::Cast(obj->GetProperties().GetTaggedObject()); in GetAllKeysForSerialization() 541 NameDictionary *dict = NameDictionary::Cast(obj->GetProperties() in GetAllKeysForSerialization() [all...] |
H A D | layout_info.h | 79 inline Properties *GetProperties() const in GetProperties() function in panda::ecmascript::LayoutInfo
|
H A D | js_object-inl.h | 239 return TaggedArray::Cast(GetProperties().GetTaggedObject())->IsDictionaryMode(); in IsPropertiesDict() 332 TaggedArray *array = TaggedArray::Cast(GetProperties().GetTaggedObject()); in GetProperty() 342 TaggedArray *array = TaggedArray::Cast(GetProperties().GetTaggedObject()); in SetProperty()
|
H A D | layout_info-inl.h | 112 Span<struct Properties> sp(GetProperties(), propertiesNumber);
|
/arkcompiler/runtime_core/static_core/runtime/include/tooling/ |
H A D | pt_lang_extension.h | 52 virtual PandaList<PtProperty> GetProperties(PtObject object) const = 0;
|
/arkcompiler/runtime_core/static_core/compiler/code_info/ |
H A D | code_info_tables.h | 76 return FieldIsOsr::Get(GetProperties()); in IsOsr() 81 return FieldHasRegMap::Get(GetProperties()); in HasRegMap()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | fast_json_stringifier.cpp | 483 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in TryCacheSerializeKeys() 498 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in TryCacheSerializeKeysFromPropertiesArray() 541 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in TryCacheSerializeKeysFromEnumCache() 577 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in TryCacheSerializeKeysFromGlobalObject() 614 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in TryCacheSerializeKeysFromNameDictionary() 652 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in SerializeKeysWithCache() 801 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in DefaultSerializeKeys()
|
H A D | json_stringifier.cpp | 668 JSHandle<TaggedArray> propertiesArr(thread_, obj->GetProperties()); in SerializeKeys() 698 if (obj->GetProperties().IsDictionary()) { in SerializeKeys() 711 propertiesArr = JSHandle<TaggedArray>(thread_, obj->GetProperties()); in SerializeKeys() 761 if (obj->GetProperties().IsDictionary()) { in SerializeKeys() 763 propertiesArr = JSHandle<TaggedArray>(thread_, obj->GetProperties()); in SerializeKeys()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/ |
H A D | object_repository.cpp | 168 auto properties = obj.GetProperties(frameObj.GetObjectId().value(), false); in TEST_F() 199 auto properties = obj.GetProperties(frameObj.GetObjectId().value(), true); in TEST_F()
|
/arkcompiler/toolchain/tooling/test/testcases/ |
H A D | js_variable_first_test.h | 126 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {}); 137 runtime_->GetProperties(params, &outPropertyDescInner, {}, {}, {});
|
H A D | js_variable_second_test.h | 126 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {}); 137 runtime_->GetProperties(params, &outPropertyDescInner, {}, {}, {});
|
/arkcompiler/toolchain/tooling/test/ |
H A D | runtime_impl_test.cpp | 144 dispatcherImpl->GetProperties(request);
in HWTEST_F_L0() 149 dispatcherImpl->GetProperties(request1);
in HWTEST_F_L0()
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | runtime_impl.h | 36 DispatchResponse GetProperties( 53 void GetProperties(const DispatchRequest &request);
|
/arkcompiler/toolchain/tooling/backend/ |
H A D | debugger_executor.cpp | 176 result = DebuggerApi::GetProperties(vm, frameHandler, level, slot); in GetLexicalValue()
|