/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_relative_time_format.cpp | 53 … bool isInstanceOf = JSObject::InstanceOf(thread, thisValue, env->GetRelativeTimeFormatFunction()); in RelativeTimeFormatConstructor()
|
D | builtins_number_format.cpp | 69 bool isInstanceOf = JSObject::InstanceOf(thread, thisValue, env->GetNumberFormatFunction()); in NumberFormatConstructor()
|
D | builtins_date_time_format.cpp | 67 bool isInstanceOf = JSObject::InstanceOf(thread, thisValue, env->GetDateTimeFormatFunction()); in DateTimeFormatConstructor()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
D | jsnapi_tests.cpp | 184 HWTEST_F_L0(JSNApiTests, InstanceOf) in HWTEST_F_L0() argument 190 ASSERT_FALSE(origin->InstanceOf(vm_, target)); in HWTEST_F_L0() 826 bool isInstance = JSObject::InstanceOf(thread_, JSHandle<JSTaggedValue>::Cast(sonObj), set); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_relative_time_format.cpp | 242 bool isInstanceOf = JSFunction::InstanceOf(thread, rtf, env->GetRelativeTimeFormatFunction()); in UnwrapRelativeTimeFormat()
|
D | js_object.h | 514 static bool InstanceOf(JSThread *thread, const JSHandle<JSTaggedValue> &object,
|
D | js_function.cpp | 178 return JSObject::InstanceOf(thread, obj, JSHandle<JSTaggedValue>(thread, boundTarget)); in OrdinaryHasInstance()
|
D | js_number_format.cpp | 877 bool hasInstance = JSObject::InstanceOf(thread, nf, env->GetNumberFormatFunction()); in UnwrapNumberFormat()
|
D | js_date_time_format.cpp | 752 …bool isInstanceOf = JSFunction::InstanceOf(thread, dateTimeFormat, env->GetDateTimeFormatFunction(… in UnwrapDateTimeFormat()
|
D | js_object.cpp | 1744 bool JSObject::InstanceOf(JSThread *thread, const JSHandle<JSTaggedValue> &object, in InstanceOf() function in panda::ecmascript::JSObject
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs.h | 170 V(InstanceOf) \
|
D | runtime_stubs.cpp | 549 DEF_RUNTIME_STUBS(InstanceOf) in DEF_RUNTIME_STUBS() argument 551 RUNTIME_STUBS_HEADER(InstanceOf); in DEF_RUNTIME_STUBS()
|
D | runtime_stubs-inl.h | 123 bool ret = JSObject::InstanceOf(thread, obj, target); in RuntimeInstanceof()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | common_stubs.cpp | 219 Return(InstanceOf(glue, object, target, profileTypeInfo, slotId, ProfileOperation())); in GenerateCircuit()
|
D | stub_builder.h | 364 …GateRef InstanceOf(GateRef glue, GateRef object, GateRef target, GateRef profileTypeInfo, GateRef …
|
D | stub_builder.cpp | 3435 GateRef StubBuilder::InstanceOf( in InstanceOf() function in panda::ecmascript::kungfu::StubBuilder 3677 result = CallRuntime(glue, RTSTUB_ID(InstanceOf), { obj, boundTarget }); in OrdinaryHasInstance()
|
D | interpreter_stub.cpp | 926 GateRef result = InstanceOf(glue, obj, target, profileTypeInfo, slotId, callback); in DECLARE_ASM_HANDLER()
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
D | jsnapi.h | 481 bool InstanceOf(const EcmaVM *vm, Local<JSValueRef> value);
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 3010 bool JSValueRef::InstanceOf(const EcmaVM *vm, Local<JSValueRef> value) in InstanceOf() function in panda::JSValueRef 3017 bool result = JSObject::InstanceOf(thread, origin, target); in InstanceOf()
|