Home
last modified time | relevance | path

Searched refs:JSIntlBoundFunction (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_collator.cpp106 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Compare()
122 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(a… in AnonymousCollator()
Dbuiltins_number_format.cpp132 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Format()
200 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(a… in NumberFormatInternalFormatNumber()
Dbuiltins_date_time_format.cpp133 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Format()
149 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(a… in AnonymousDateTimeFormat()
Dbuiltins.cpp631 factory_->CreateFunctionClass(FunctionKind::NORMAL_FUNCTION, JSIntlBoundFunction::SIZE, in InitializeFunction()
/arkcompiler/ets_runtime/ecmascript/
Djs_function.h432 class JSIntlBoundFunction : public JSFunction {
434 CAST_CHECK(JSIntlBoundFunction, IsJSIntlBoundFunction);
Dobject_factory.h98 class JSIntlBoundFunction; variable
259 JSHandle<JSIntlBoundFunction> NewJSIntlBoundFunction(MethodIndex idx, int functionLength = 1);
Dobject_factory.cpp1390 JSIntlBoundFunction::Cast(*obj)->SetNumberFormat(thread_, JSTaggedValue::Undefined()); in InitializeJSObject()
1391 JSIntlBoundFunction::Cast(*obj)->SetDateTimeFormat(thread_, JSTaggedValue::Undefined()); in InitializeJSObject()
1392 JSIntlBoundFunction::Cast(*obj)->SetCollator(thread_, JSTaggedValue::Undefined()); in InitializeJSObject()
1876 JSHandle<JSIntlBoundFunction> ObjectFactory::NewJSIntlBoundFunction(MethodIndex idx, int functionLe… in NewJSIntlBoundFunction()
1881 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(NewJSObject(hcla… in NewJSIntlBoundFunction()
1894 RETURN_HANDLE_IF_ABRUPT_COMPLETION(JSIntlBoundFunction, thread_); in NewJSIntlBoundFunction()
Djs_function.cpp718 JSTaggedValue JSIntlBoundFunction::IntlNameGetter(JSThread *thread, [[maybe_unused]] const JSHandle… in IntlNameGetter()
Ddump.cpp944 JSIntlBoundFunction::Cast(obj)->Dump(os); in DumpObject()
2962 void JSIntlBoundFunction::Dump(std::ostream &os) const in Dump()
4154 JSIntlBoundFunction::Cast(obj)->DumpForSnapshot(vec); in DumpObject()
5493 void JSIntlBoundFunction::DumpForSnapshot(std::vector<Reference> &vec) const in DumpForSnapshot()
/arkcompiler/ets_runtime/ecmascript/mem/
Dobject_xray.h500 auto jsIntlBoundFunction = JSIntlBoundFunction::Cast(object); in VisitObjectBody()
/arkcompiler/ets_runtime/ecmascript/tests/
Ddump_test.cpp561 CHECK_DUMP_FIELDS(JSFunction::SIZE, JSIntlBoundFunction::SIZE, 3U); in HWTEST_F_L0()
562 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in HWTEST_F_L0()