Searched refs:speciesSymbol (Results 1 – 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_set_test.cpp | 305 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in HWTEST_F_L0() local 306 EXPECT_TRUE(!speciesSymbol->IsUndefined()); in HWTEST_F_L0() 311 …JSObject::GetProperty(thread, JSHandle<JSTaggedValue>(newTarget), speciesSymbol).GetValue().GetTag… in HWTEST_F_L0()
|
D | builtins_map_test.cpp | 294 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in HWTEST_F_L0() local 295 EXPECT_TRUE(!speciesSymbol.GetTaggedValue().IsUndefined()); in HWTEST_F_L0() 300 …JSObject::GetProperty(thread, JSHandle<JSTaggedValue>(newTarget), speciesSymbol).GetValue().GetTag… in HWTEST_F_L0()
|
D | builtins_regexp_test.cpp | 558 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in HWTEST_F_L0() local 559 EXPECT_TRUE(!speciesSymbol.GetTaggedValue().IsUndefined()); in HWTEST_F_L0() 564 …JSObject::GetProperty(thread, JSHandle<JSTaggedValue>(newTarget), speciesSymbol).GetValue().GetTag… in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins.cpp | 776 env->SetSpeciesSymbol(thread_, speciesSymbol); in InitializeSymbol() 1390 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in InitializeSet() local 1393 SetGetter(JSHandle<JSObject>(setFunction), speciesSymbol, speciesGetter); in InitializeSet() 1457 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in InitializeMap() local 1460 SetGetter(JSHandle<JSObject>(mapFunction), speciesSymbol, speciesGetter); in InitializeMap() 2043 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in InitializeRegExp() local 2046 SetGetter(JSHandle<JSObject>(regexpFunction), speciesSymbol, speciesGetter); in InitializeRegExp() 2137 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in InitializeArray() local 2140 SetGetter(JSHandle<JSObject>(arrayFunction), speciesSymbol, speciesGetter); in InitializeArray() 2231 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in InitializeTypedArray() local [all …]
|
D | builtins_promise.cpp | 121 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in All() local 122 JSHandle<JSTaggedValue> sctor = JSObject::GetProperty(thread, ctor, speciesSymbol).GetValue(); in All() 188 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in Race() local 189 …ggedValue> speciesConstructor = JSObject::GetProperty(thread, thisValue, speciesSymbol).GetValue(); in Race()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_array.cpp | 160 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in ArraySpeciesCreate() local 161 constructor = JSTaggedValue::GetProperty(thread, constructor, speciesSymbol).GetValue(); in ArraySpeciesCreate()
|
D | js_object.cpp | 2321 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in SlowSpeciesConstructor() local 2322 …JSHandle<JSTaggedValue> speciesConstructor = GetProperty(thread, objConstructor, speciesSymbol).Ge… in SlowSpeciesConstructor()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_object_test.cpp | 730 JSHandle<JSTaggedValue> speciesSymbol = env->GetSpeciesSymbol(); in HWTEST_F_L0() local 731 JSObject::SetProperty(thread, constructorFuncValue, speciesSymbol, speciesConstructValue); in HWTEST_F_L0()
|