Home
last modified time | relevance | path

Searched refs:ToPropertyKey (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_reflect.cpp99 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, GetCallArg(argv, 1)); in ReflectDefineProperty()
123 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, GetCallArg(argv, 1)); in ReflectDeleteProperty()
143 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, GetCallArg(argv, 1)); in ReflectGet()
169 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, GetCallArg(argv, 1)); in ReflectGetOwnPropertyDescriptor()
210 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, GetCallArg(argv, 1)); in ReflectHas()
281 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, GetCallArg(argv, 1)); in ReflectSet()
Dbuiltins_object.cpp268 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, prop); in DefineProperty()
336 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, prop); in GetOwnPropertyDescriptor()
690 JSHandle<JSTaggedValue> property = JSTaggedValue::ToPropertyKey(thread, prop); in HasOwnProperty()
747 JSHandle<JSTaggedValue> property = JSTaggedValue::ToPropertyKey(thread, msg); in PropertyIsEnumerable()
1035 JSHandle<JSTaggedValue> propertyKey = JSTaggedValue::ToPropertyKey(thread, key); in CreateDataPropertyOnObjectFunctions()
1062 JSHandle<JSTaggedValue> key = JSTaggedValue::ToPropertyKey(thread, prop); in HasOwn()
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DmemberExpression.cpp51 return pg->ToPropertyKey(property_, computed_); in CompileKey()
DobjectExpression.cpp390 compiler::Operand key = pg->ToPropertyKey(prop->Key(), prop->IsComputed()); in CompileRemainingProperties()
/arkcompiler/ets_runtime/ecmascript/ic/
Dic_runtime.cpp152 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread_, key); in LoadMiss()
/arkcompiler/ets_frontend/es2panda/ir/base/
DclassDefinition.cpp258 compiler::Operand key = pg->ToPropertyKey(prop->Key(), prop->Computed()); in CompileMissingProperties()
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h113 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, prop); in RuntimeIsIn()
263 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, prop); in RuntimeDelObjProp()
530 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, prop); in RuntimeLdObjByValue()
549 JSHandle<JSTaggedValue> propKey(JSTaggedValue::ToPropertyKey(thread, prop)); in RuntimeStObjByValue()
572 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, key); in RuntimeStOwnByValue()
593 JSHandle<JSTaggedValue> propKey(JSTaggedValue::ToPropertyKey(thread, key)); in RuntimeLdSuperByValue()
616 JSHandle<JSTaggedValue> propKey(JSTaggedValue::ToPropertyKey(thread, key)); in RuntimeStSuperByValue()
984 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, key); in RuntimeStOwnByValueWithNameSet()
1025 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, propHandle); in RuntimeStOwnByNameWithNameSet()
2032 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, prop); in RuntimeDefineGetterSetterByValue()
Druntime_stubs.cpp729 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, key); in DEF_RUNTIME_STUBS()
747 JSHandle<JSTaggedValue> propKey = JSTaggedValue::ToPropertyKey(thread, key); in DEF_RUNTIME_STUBS()
/arkcompiler/ets_runtime/ecmascript/tests/
Dtagged_value_test.cpp775 HWTEST_F_L0(JSTaggedValueTest, ToPropertyKey) in HWTEST_F_L0() argument
780 …result = JSTaggedValue::ToPropertyKey(thread, JSHandle<JSTaggedValue>(thread, key)).GetTaggedValue… in HWTEST_F_L0()
849 JSHandle<JSTaggedValue> key1 = JSTaggedValue::ToPropertyKey(thread, undefinedHandle); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Djs_tagged_value.h428 …static JSHandle<JSTaggedValue> ToPropertyKey(JSThread *thread, const JSHandle<JSTaggedValue> &tagg…
Djs_tagged_value.cpp59 JSHandle<JSTaggedValue> JSTaggedValue::ToPropertyKey(JSThread *thread, const JSHandle<JSTaggedValue… in ToPropertyKey() function in panda::ecmascript::JSTaggedValue
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h472 Operand ToPropertyKey(const ir::Expression *prop, bool isComputed);
Dpandagen.cpp2007 Operand PandaGen::ToPropertyKey(const ir::Expression *prop, bool isComputed) in ToPropertyKey() function in panda::es2panda::compiler::PandaGen