Searched refs:SetPrototypeOf (Results 1 - 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_object.h | 71 V("setPrototypeOf", SetPrototypeOf, 2, ObjectSetPrototypeOf) \ 139 static JSTaggedValue SetPrototypeOf(EcmaRuntimeCallInfo *argv);
|
H A D | builtins_reflect.cpp | 320 BUILTINS_API_TRACE(argv->GetThread(), Reflect, SetPrototypeOf); in ReflectSetPrototypeOf() 331 THROW_TYPE_ERROR_AND_RETURN(thread, "SetPrototypeOf: proto is neither Object nor Null", in ReflectSetPrototypeOf() 334 // 3. Return ? target.[[SetPrototypeOf]](proto). in ReflectSetPrototypeOf()
|
H A D | builtins_object.cpp | 726 JSTaggedValue BuiltinsObject::SetPrototypeOf(EcmaRuntimeCallInfo *argv) in SetPrototypeOf() function in panda::ecmascript::builtins::BuiltinsObject 730 BUILTINS_API_TRACE(thread, Object, SetPrototypeOf); in SetPrototypeOf() 742 THROW_TYPE_ERROR_AND_RETURN(thread, "SetPrototypeOf: proto is neither Object nor Null", in SetPrototypeOf() 751 // 5. Let status be O.[[SetPrototypeOf]](proto). in SetPrototypeOf() 760 THROW_TYPE_ERROR_AND_RETURN(thread, "SetPrototypeOf: prototype set failed", JSTaggedValue::Exception()); in SetPrototypeOf() 1044 // 5. Let status be O.[[SetPrototypeOf]](proto). in ProtoSetter()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_object_test.cpp | 684 HWTEST_F_L0(BuiltinsObjectTest, SetPrototypeOf) in HWTEST_F_L0() 696 JSTaggedValue result = BuiltinsObject::SetPrototypeOf(ecmaRuntimeCallInfo); in HWTEST_F_L0() 757 JSTaggedValue result1 = BuiltinsObject::SetPrototypeOf(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 669 V(Object, SetPrototypeOf) \ 732 V(Reflect, SetPrototypeOf) \
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_proxy_test.cpp | 325 // ES6 9.5.2 [[SetPrototypeOf]] (V) 326 HWTEST_F_L0(JSProxyTest, SetPrototypeOf) in HWTEST_F_L0() 329 // 1. handler has no "SetPrototypeOf" in HWTEST_F_L0() 345 // 2. handler has "SetPrototypeOf" in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_call_signature.h | 90 V(SetPrototypeOf, Object, Undefined())
|
H A D | builtins_object_stub_builder.cpp | 1310 void BuiltinsObjectStubBuilder::SetPrototypeOf(Variable *result, Label *exit, Label *slowPath)
in SetPrototypeOf() function in panda::ecmascript::kungfu::BuiltinsObjectStubBuilder
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 291 reinterpret_cast<uintptr_t>(Object::SetPrototypeOf),
|
Completed in 19 milliseconds