Home
last modified time | relevance | path

Searched refs:RelativeTimeFormat (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_frontend/test262/
Dintl_tests.txt700 intl402/RelativeTimeFormat/constructor/name.js
701 intl402/RelativeTimeFormat/constructor/constructor/proto-from-ctor-realm.js
702 intl402/RelativeTimeFormat/constructor/constructor/options-numberingSystem-valid.js
703 intl402/RelativeTimeFormat/constructor/constructor/options-toobject-prototype.js
704 intl402/RelativeTimeFormat/constructor/constructor/options-order.js
705 intl402/RelativeTimeFormat/constructor/constructor/locales-valid.js
706 intl402/RelativeTimeFormat/constructor/constructor/options-proto.js
707 intl402/RelativeTimeFormat/constructor/constructor/options-throwing-getters.js
708 intl402/RelativeTimeFormat/constructor/constructor/options-toobject.js
709 intl402/RelativeTimeFormat/constructor/constructor/locales-invalid.js
[all …]
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_relative_time_format.cpp24 BUILTINS_API_TRACE(thread, RelativeTimeFormat, Constructor); in RelativeTimeFormatConstructor()
69 BUILTINS_API_TRACE(thread, RelativeTimeFormat, SupportedLocalesOf); in SupportedLocalesOf()
92 BUILTINS_API_TRACE(thread, RelativeTimeFormat, Format); in Format()
125 BUILTINS_API_TRACE(thread, RelativeTimeFormat, FormatToParts); in FormatToParts()
158 BUILTINS_API_TRACE(thread, RelativeTimeFormat, ResolvedOptions); in ResolvedOptions()
Dbuiltins_lazy_callback.h44 V(RelativeTimeFormat) \
79 static JSTaggedValue RelativeTimeFormat(JSThread *thread, const JSHandle<JSObject> &obj);
Dbuiltins.cpp178 using RelativeTimeFormat = builtins::BuiltinsRelativeTimeFormat; typedef
3226RelativeTimeFormat::RelativeTimeFormatConstructor, in InitializeRelativeTimeFormat()
3233 …SetFunction(env, rtfFunction, "supportedLocalesOf", RelativeTimeFormat::SupportedLocalesOf, Functi… in InitializeRelativeTimeFormat()
3241 SetFunction(env, rtfPrototype, "format", RelativeTimeFormat::Format, FunctionLength::TWO); in InitializeRelativeTimeFormat()
3244 …SetFunction(env, rtfPrototype, "formatToParts", RelativeTimeFormat::FormatToParts, FunctionLength:… in InitializeRelativeTimeFormat()
3247 …SetFunction(env, rtfPrototype, "resolvedOptions", RelativeTimeFormat::ResolvedOptions, FunctionLen… in InitializeRelativeTimeFormat()
/arkcompiler/ets_frontend/es2panda/test/
Dtest262skiplist-flaky.txt3 intl402/RelativeTimeFormat/constructor/constructor/options-throwing-getters.js
Dtest262skiplist.txt7506 intl402/RelativeTimeFormat/constructor/constructor/locales-valid.js
7507 intl402/RelativeTimeFormat/constructor/constructor/options-numberingSystem-valid.js
7508 intl402/RelativeTimeFormat/constructor/constructor/options-numeric-valid.js
7509 intl402/RelativeTimeFormat/constructor/constructor/options-order.js
7510 intl402/RelativeTimeFormat/constructor/constructor/options-proto.js
7511 intl402/RelativeTimeFormat/constructor/constructor/options-style-valid.js
7512 intl402/RelativeTimeFormat/constructor/constructor/options-toobject-prototype.js
7513 intl402/RelativeTimeFormat/constructor/constructor/options-toobject.js
7514 intl402/RelativeTimeFormat/constructor/constructor/options-undefined.js
7515 intl402/RelativeTimeFormat/constructor/constructor/proto-from-ctor-realm.js
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/test-lists/test262/
Dtest262-ignored-JIT-ASAN-REPEATS.txt25 intl402/RelativeTimeFormat/constructor/supportedLocalesOf/locales-invalid.js
Dtest262-ignored-JIT-REPEATS.txt1478 intl402/RelativeTimeFormat/constructor/constructor/options-proto.js
1479 intl402/RelativeTimeFormat/constructor/constructor/options-undefined.js
1480 intl402/RelativeTimeFormat/constructor/length.js
1481 intl402/RelativeTimeFormat/constructor/name.js
1482 intl402/RelativeTimeFormat/constructor/prop-desc.js
1483 intl402/RelativeTimeFormat/constructor/supportedLocalesOf/length.js
1484 intl402/RelativeTimeFormat/constructor/supportedLocalesOf/name.js
1485 intl402/RelativeTimeFormat/constructor/supportedLocalesOf/options-toobject.js
1486 intl402/RelativeTimeFormat/constructor/supportedLocalesOf/options-undefined.js
1487 intl402/RelativeTimeFormat/constructor/supportedLocalesOf/prop-desc.js
[all …]
Dtest262-excluded.txt9015 intl402/Intl/supportedValuesOf/numberingSystems-accepted-by-RelativeTimeFormat.js
9241 intl402/RelativeTimeFormat/constructor/constructor/proto-from-ctor-realm.js
9242 intl402/RelativeTimeFormat/prototype/format/pl-pl-style-long.js
9243 intl402/RelativeTimeFormat/prototype/format/pl-pl-style-narrow.js
9244 intl402/RelativeTimeFormat/prototype/format/pl-pl-style-short.js
9245 intl402/RelativeTimeFormat/prototype/formatToParts/pl-pl-style-long.js
9246 intl402/RelativeTimeFormat/prototype/formatToParts/pl-pl-style-narrow.js
9247 intl402/RelativeTimeFormat/prototype/formatToParts/pl-pl-style-short.js
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h692 V(RelativeTimeFormat, Constructor) \
693 V(RelativeTimeFormat, SupportedLocalesOf) \
694 V(RelativeTimeFormat, Format) \
695 V(RelativeTimeFormat, FormatToParts) \
696 V(RelativeTimeFormat, ResolvedOptions) \
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp192 using RelativeTimeFormat = builtins::BuiltinsRelativeTimeFormat; typedef
714 reinterpret_cast<uintptr_t>(RelativeTimeFormat::RelativeTimeFormatConstructor),
715 reinterpret_cast<uintptr_t>(RelativeTimeFormat::SupportedLocalesOf),
716 reinterpret_cast<uintptr_t>(RelativeTimeFormat::Format),
717 reinterpret_cast<uintptr_t>(RelativeTimeFormat::FormatToParts),
718 reinterpret_cast<uintptr_t>(RelativeTimeFormat::ResolvedOptions),
/arkcompiler/ets_frontend/testTs/
Dtest-case.patch4441 …://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat
4442 +const rtf1 = new Intl.RelativeTimeFormat('en', { style: 'narrow' });
4450 +const rtf2 = new Intl.RelativeTimeFormat('es', { numeric: 'auto' });
/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2 …taView:["setBigInt64","setBigUint64","getBigInt64","getBigUint64"],RelativeTimeFormat:["format","f…