Home
last modified time | relevance | path

Searched refs:propDesc (Results 1 - 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
H A Dpgo_profiler_layout.h400 desc.IterateProps([&size] (const PropertyDesc &propDesc) { in CaculateSize()
401 auto key = propDesc.first; in CaculateSize()
419 desc.IterateProps([this, &current] (const PropertyDesc &propDesc) { in Merge()
420 auto key = propDesc.first; in Merge()
421 auto type = propDesc.second; in Merge()
507 auto propDesc = desc.GetPropertyDesc(); in Merge() local
508 auto key = propDesc.first; in Merge()
509 auto type = propDesc.second; in Merge()
569 rootLayoutDesc->IterateProps([&text, &isLayoutFirst] (const PropertyDesc &propDesc) { in GetTypeString()
576 text += propDesc in GetTypeString()
[all...]
/arkcompiler/ets_runtime/ecmascript/
H A Djs_hclass.cpp1275 rootDesc->IterateProps([thread, factory, &index, hclass, layout](const pgo::PropertyDesc& propDesc) { in CreateRootHClassFromPGO()
1276 auto& cstring = propDesc.first; in CreateRootHClassFromPGO()
1277 auto& handler = propDesc.second; in CreateRootHClassFromPGO()
1308 rootDesc->IterateProps([thread, factory, &index, &hclass](const pgo::PropertyDesc& propDesc) { in CreateRootHClassWithCached()
1309 auto& cstring = propDesc.first; in CreateRootHClassWithCached()
1310 auto& handler = propDesc.second; in CreateRootHClassWithCached()
1333 pgo::PropertyDesc propDesc = reinterpret_cast<const pgo::ChildHClassLayoutDesc *>(desc)->GetPropertyDesc(); in CreateChildHClassFromPGO() local
1334 auto& cstring = propDesc.first; in CreateChildHClassFromPGO()
1335 auto& handler = propDesc.second; in CreateChildHClassFromPGO()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_object.cpp190 // a.Let propDesc be props.[[GetOwnProperty]](nextKey). in ObjectDefineProperties()
191 // b.ReturnIfAbrupt(propDesc). in ObjectDefineProperties()
192 // c.If propDesc is not undefined and propDesc.[[Enumerable]] is true, then in ObjectDefineProperties()
201 PropertyDescriptor propDesc(thread); in ObjectDefineProperties()
204 bool success = JSTaggedValue::GetOwnProperty(thread, JSHandle<JSTaggedValue>::Cast(props), handleKey, propDesc); in ObjectDefineProperties()
205 // ReturnIfAbrupt(propDesc) in ObjectDefineProperties()
208 if (success && propDesc.IsEnumerable()) { in ObjectDefineProperties()

Completed in 7 milliseconds