Home
last modified time | relevance | path

Searched refs:GetProperties (Results 1 - 25 of 59) sorted by relevance

123

/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
H A Dobject_repository.h46 std::vector<PropertyDescriptor> GetProperties(RemoteObjectId id, bool generatePreview);
53 std::vector<PropertyDescriptor> GetProperties(RemoteObjectId id);
H A Dobject_repository.cpp133 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 Dinspector.h95 std::vector<PropertyDescriptor> GetProperties(PtThread thread, RemoteObjectId objectId, bool generatePreview);
H A Dinspector.cpp89 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 Dobject_operator_third_test.cpp94 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 Dobject_operator_second_test.cpp207 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 Dobject_factory_test.cpp56 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 Dlexical_env.h50 JSTaggedValue GetProperties(uint32_t index) const in GetProperties() function in panda::ecmascript::LexicalEnv
H A Dsendable_env.h50 JSTaggedValue GetProperties(uint32_t index) const in GetProperties() function in panda::ecmascript::SendableEnv
H A Dobject_operator.cpp514 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 Dobject_fast_operator-inl.h105 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 Djs_object.cpp168 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 Dlayout_info.h79 inline Properties *GetProperties() const in GetProperties() function in panda::ecmascript::LayoutInfo
H A Djs_object-inl.h239 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 Dlayout_info-inl.h112 Span<struct Properties> sp(GetProperties(), propertiesNumber);
/arkcompiler/runtime_core/static_core/runtime/include/tooling/
H A Dpt_lang_extension.h52 virtual PandaList<PtProperty> GetProperties(PtObject object) const = 0;
/arkcompiler/runtime_core/static_core/compiler/code_info/
H A Dcode_info_tables.h76 return FieldIsOsr::Get(GetProperties()); in IsOsr()
81 return FieldHasRegMap::Get(GetProperties()); in HasRegMap()
/arkcompiler/ets_runtime/ecmascript/base/
H A Dfast_json_stringifier.cpp483 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 Djson_stringifier.cpp668 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 Dobject_repository.cpp168 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 Djs_variable_first_test.h126 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {});
137 runtime_->GetProperties(params, &outPropertyDescInner, {}, {}, {});
H A Djs_variable_second_test.h126 runtime_->GetProperties(params, &outPropertyDesc, {}, {}, {});
137 runtime_->GetProperties(params, &outPropertyDescInner, {}, {}, {});
/arkcompiler/toolchain/tooling/test/
H A Druntime_impl_test.cpp144 dispatcherImpl->GetProperties(request); in HWTEST_F_L0()
149 dispatcherImpl->GetProperties(request1); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/agent/
H A Druntime_impl.h36 DispatchResponse GetProperties(
53 void GetProperties(const DispatchRequest &request);
/arkcompiler/toolchain/tooling/backend/
H A Ddebugger_executor.cpp176 result = DebuggerApi::GetProperties(vm, frameHandler, level, slot); in GetLexicalValue()

Completed in 22 milliseconds

123