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.cpp506 factory_->CreateFunctionClass(FunctionKind::NORMAL_FUNCTION, JSIntlBoundFunction::SIZE, in InitializeFunction()
/arkcompiler/ets_runtime/ecmascript/
Djs_function.h393 class JSIntlBoundFunction : public JSFunction {
395 CAST_CHECK(JSIntlBoundFunction, IsJSIntlBoundFunction);
Dobject_factory.h94 class JSIntlBoundFunction; variable
252 JSHandle<JSIntlBoundFunction> NewJSIntlBoundFunction(MethodIndex idx, int functionLength = 1);
Dobject_factory.cpp1281 JSIntlBoundFunction::Cast(*obj)->SetNumberFormat(thread_, JSTaggedValue::Undefined()); in InitializeJSObject()
1282 JSIntlBoundFunction::Cast(*obj)->SetDateTimeFormat(thread_, JSTaggedValue::Undefined()); in InitializeJSObject()
1283 JSIntlBoundFunction::Cast(*obj)->SetCollator(thread_, JSTaggedValue::Undefined()); in InitializeJSObject()
1681 JSHandle<JSIntlBoundFunction> ObjectFactory::NewJSIntlBoundFunction(MethodIndex idx, int functionLe… in NewJSIntlBoundFunction()
1686 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(NewJSObject(hcla… in NewJSIntlBoundFunction()
1699 RETURN_HANDLE_IF_ABRUPT_COMPLETION(JSIntlBoundFunction, thread_); in NewJSIntlBoundFunction()
Djs_function.cpp607 JSTaggedValue JSIntlBoundFunction::IntlNameGetter(JSThread *thread, [[maybe_unused]] const JSHandle… in IntlNameGetter()
Ddump.cpp857 JSIntlBoundFunction::Cast(obj)->Dump(os); in DumpObject()
2799 void JSIntlBoundFunction::Dump(std::ostream &os) const in Dump()
3911 JSIntlBoundFunction::Cast(obj)->DumpForSnapshot(vec); in DumpObject()
5057 void JSIntlBoundFunction::DumpForSnapshot(std::vector<std::pair<CString, JSTaggedValue>> &vec) const in DumpForSnapshot()
/arkcompiler/ets_runtime/ecmascript/mem/
Dobject_xray.h440 auto jsIntlBoundFunction = JSIntlBoundFunction::Cast(object); in VisitObjectBody()
/arkcompiler/ets_runtime/ecmascript/tests/
Ddump_test.cpp530 CHECK_DUMP_FIELDS(JSFunction::SIZE, JSIntlBoundFunction::SIZE, 3U); in HWTEST_F_L0()
531 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in HWTEST_F_L0()