Home
last modified time | relevance | path

Searched refs:intlBoundFunc (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_collator.cpp106 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Compare() local
108 intlBoundFunc->SetCollator(thread, collator); in Compare()
109 collator->SetBoundCompare(thread, intlBoundFunc); in Compare()
122 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(a… in AnonymousCollator() local
125 JSHandle<JSTaggedValue> collator(thread, intlBoundFunc->GetCollator()); in AnonymousCollator()
Dbuiltins_number_format.cpp132 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Format() local
134 intlBoundFunc->SetNumberFormat(thread, typpedNf); in Format()
135 typpedNf->SetBoundFormat(thread, intlBoundFunc); in Format()
200 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(a… in NumberFormatInternalFormatNumber() local
203 JSHandle<JSTaggedValue> nf(thread, intlBoundFunc->GetNumberFormat()); in NumberFormatInternalFormatNumber()
Dbuiltins_date_time_format.cpp133 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Format() local
135 intlBoundFunc->SetDateTimeFormat(thread, dtf); in Format()
136 dtf->SetBoundFormat(thread, intlBoundFunc); in Format()
149 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(a… in AnonymousDateTimeFormat() local
152 JSHandle<JSTaggedValue> dtf(thread, intlBoundFunc->GetDateTimeFormat()); in AnonymousDateTimeFormat()
/arkcompiler/ets_runtime/ecmascript/tests/
Ddump_test.cpp531 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in HWTEST_F_L0() local
533 DUMP_FOR_HANDLE(intlBoundFunc) in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Dobject_factory.cpp1686 …JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(NewJSObject(hcla… in NewJSIntlBoundFunction() local
1687 intlBoundFunc->SetNumberFormat(thread_, JSTaggedValue::Undefined()); in NewJSIntlBoundFunction()
1688 intlBoundFunc->SetDateTimeFormat(thread_, JSTaggedValue::Undefined()); in NewJSIntlBoundFunction()
1689 intlBoundFunc->SetCollator(thread_, JSTaggedValue::Undefined()); in NewJSIntlBoundFunction()
1690 JSHandle<JSFunction> function = JSHandle<JSFunction>::Cast(intlBoundFunc); in NewJSIntlBoundFunction()
1700 return intlBoundFunc; in NewJSIntlBoundFunction()