Searched refs:intlBoundFunc (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_collator.cpp | 103 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Compare() local 105 intlBoundFunc->SetCollator(thread, collator); in Compare() 106 collator->SetBoundCompare(thread, intlBoundFunc); in Compare() 119 JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(argv)); in AnonymousCollator() local 122 JSHandle<JSTaggedValue> collator(thread, intlBoundFunc->GetCollator()); in AnonymousCollator()
|
H A D | builtins_number_format.cpp | 127 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Format() local 129 intlBoundFunc->SetNumberFormat(thread, typpedNf); in Format() 130 typpedNf->SetBoundFormat(thread, intlBoundFunc); in Format() 195 JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(argv)); in NumberFormatInternalFormatNumber() local 198 JSHandle<JSTaggedValue> nf(thread, intlBoundFunc->GetNumberFormat()); in NumberFormatInternalFormatNumber()
|
H A D | builtins_date_time_format.cpp | 134 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in Format() local 136 intlBoundFunc->SetDateTimeFormat(thread, dtf); in Format() 137 dtf->SetBoundFormat(thread, intlBoundFunc); in Format() 150 JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(GetConstructor(argv)); in AnonymousDateTimeFormat() local 153 JSHandle<JSTaggedValue> dtf(thread, intlBoundFunc->GetDateTimeFormat()); in AnonymousDateTimeFormat()
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | dump_test.cpp | 638 JSHandle<JSIntlBoundFunction> intlBoundFunc = factory->NewJSIntlBoundFunction( in HWTEST_F_L0() local 640 DUMP_FOR_HANDLE(intlBoundFunc); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | object_factory.cpp | 2116 JSHandle<JSIntlBoundFunction> intlBoundFunc = JSHandle<JSIntlBoundFunction>::Cast(NewJSObject(hclass)); in NewJSIntlBoundFunction() local 2117 intlBoundFunc->SetNumberFormat(thread_, JSTaggedValue::Undefined()); in NewJSIntlBoundFunction() 2118 intlBoundFunc->SetDateTimeFormat(thread_, JSTaggedValue::Undefined()); in NewJSIntlBoundFunction() 2119 intlBoundFunc->SetCollator(thread_, JSTaggedValue::Undefined()); in NewJSIntlBoundFunction() 2120 JSHandle<JSFunction> function = JSHandle<JSFunction>::Cast(intlBoundFunc); in NewJSIntlBoundFunction() 2130 return intlBoundFunc; in NewJSIntlBoundFunction()
|
Completed in 15 milliseconds