Home
last modified time | relevance | path

Searched refs:ecmaObj (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dtagged_node.h72 JSHandle<ECMAObject> ecmaObj(thread, key); in Hash()
73 ECMAObject::Cast(key.GetTaggedObject())->SetHash(thread, hash, ecmaObj); in Hash()
Dlinked_hash_table.cpp247 JSHandle<ECMAObject> ecmaObj(thread, key); in Hash() local
248 ECMAObject::SetHash(thread, hash, ecmaObj); in Hash()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtyped_array_stub_builder.cpp421 Label ecmaObj(env); in SubArray() local
427 Branch(IsEcmaObject(thisValue), &ecmaObj, slowPath); in SubArray()
428 Bind(&ecmaObj); in SubArray()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_lightweightset.cpp468 JSHandle<ECMAObject> ecmaObj(thread, key); in Hash() local
469 ECMAObject::SetHash(thread, hash, ecmaObj); in Hash()
Djs_api_lightweightmap.cpp470 JSHandle<ECMAObject> ecmaObj(thread, key); in Hash() local
471 ECMAObject::SetHash(thread, hash, ecmaObj); in Hash()
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_object_stub_builder.cpp172 Label ecmaObj(env); in ToString() local
194 Branch(IsEcmaObject(thisValue_), &ecmaObj, slowPath); in ToString()
195 Bind(&ecmaObj); in ToString()
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp305 auto ecmaObj = ECMAObject::Cast(tagged->GetTaggedObject()); in GetObjectHash() local
306 JSHandle<ECMAObject> ecmaObjHandle(ecmaVM->GetJSThread(), ecmaObj); in GetObjectHash()