Home
last modified time | relevance | path

Searched refs:InstanceOf (Results 1 – 19 of 19) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_relative_time_format.cpp53 … bool isInstanceOf = JSObject::InstanceOf(thread, thisValue, env->GetRelativeTimeFormatFunction()); in RelativeTimeFormatConstructor()
Dbuiltins_number_format.cpp69 bool isInstanceOf = JSObject::InstanceOf(thread, thisValue, env->GetNumberFormatFunction()); in NumberFormatConstructor()
Dbuiltins_date_time_format.cpp67 bool isInstanceOf = JSObject::InstanceOf(thread, thisValue, env->GetDateTimeFormatFunction()); in DateTimeFormatConstructor()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp184 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/
Djs_relative_time_format.cpp242 bool isInstanceOf = JSFunction::InstanceOf(thread, rtf, env->GetRelativeTimeFormatFunction()); in UnwrapRelativeTimeFormat()
Djs_object.h514 static bool InstanceOf(JSThread *thread, const JSHandle<JSTaggedValue> &object,
Djs_function.cpp178 return JSObject::InstanceOf(thread, obj, JSHandle<JSTaggedValue>(thread, boundTarget)); in OrdinaryHasInstance()
Djs_number_format.cpp877 bool hasInstance = JSObject::InstanceOf(thread, nf, env->GetNumberFormatFunction()); in UnwrapNumberFormat()
Djs_date_time_format.cpp752 …bool isInstanceOf = JSFunction::InstanceOf(thread, dateTimeFormat, env->GetDateTimeFormatFunction(… in UnwrapDateTimeFormat()
Djs_object.cpp1744 bool JSObject::InstanceOf(JSThread *thread, const JSHandle<JSTaggedValue> &object, in InstanceOf() function in panda::ecmascript::JSObject
/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs.h170 V(InstanceOf) \
Druntime_stubs.cpp549 DEF_RUNTIME_STUBS(InstanceOf) in DEF_RUNTIME_STUBS() argument
551 RUNTIME_STUBS_HEADER(InstanceOf); in DEF_RUNTIME_STUBS()
Druntime_stubs-inl.h123 bool ret = JSObject::InstanceOf(thread, obj, target); in RuntimeInstanceof()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcommon_stubs.cpp219 Return(InstanceOf(glue, object, target, profileTypeInfo, slotId, ProfileOperation())); in GenerateCircuit()
Dstub_builder.h364 …GateRef InstanceOf(GateRef glue, GateRef object, GateRef target, GateRef profileTypeInfo, GateRef …
Dstub_builder.cpp3435 GateRef StubBuilder::InstanceOf( in InstanceOf() function in panda::ecmascript::kungfu::StubBuilder
3677 result = CallRuntime(glue, RTSTUB_ID(InstanceOf), { obj, boundTarget }); in OrdinaryHasInstance()
Dinterpreter_stub.cpp926 GateRef result = InstanceOf(glue, obj, target, profileTypeInfo, slotId, callback); in DECLARE_ASM_HANDLER()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h481 bool InstanceOf(const EcmaVM *vm, Local<JSValueRef> value);
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp3010 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()