Home
last modified time | relevance | path

Searched full:fit (Results 1 – 25 of 128) sorted by relevance

123456

/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DPluralRules.ets21 localeMatcher?: "lookup" | "best fit" | undefined
32 localeMatcher: "lookup" | "best fit"
43 localeMatcher?: "lookup" | "best fit" | undefined
60 const localeMatcher = options?.localeMatcher ?? "best fit"
77 …private resolveLocale(localeMatcher: "lookup" | "best fit", locales?: string | FixedArray<string>)…
DDateTimeFormatTypes.ets26 formatMatcher?: "basic" | "best fit" | "best fit";
DIntl.ets26 export type ListFormatLocaleMatcher = "lookup" | "best fit"
33 export type RelativeTimeFormatLocaleMatcher = "lookup" | "best fit"
DSegmenter.ets131 localeMatcher?: 'best fit' | 'lookup';
137 localeMatcher?: 'best fit' | 'lookup'
206 * - Automatically resolves the best-fit locale
292 const matchingStrategy = options?.localeMatcher ?? 'best fit';
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/
Dx64_abi.h51 * - INTEGER This class consists of integral types that fit into one of the general
53 - SSE The class consists of types that fit into a vector register.
54 - SSEUP The class consists of types that fit into a vector register and can be passed
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/04.widening_union_conversions/
Dspec8.ets23 let b: int = a // ok, literals fit type 'int'
24 let c: number = a // ok, literals fit type 'number'
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/std/core/
DIntlPluralRulesTest.ets106 runTestWithOptions("fr", 1, { localeMatcher: "best fit" }, "one")
135 localeMatcher: "best fit",
163 localeMatcher: "best fit",
224 { localeMatcher: "best fit" } as Intl.SupportedLocalesOfOptions,
DIntlRelativeTimeFormatTest.ets51 …ns: Intl.RelativeTimeFormatOptions = {numeric: 'always', style: 'long', localeMatcher: 'best fit'};
70 …s: Intl.RelativeTimeFormatOptions = {numeric: 'always', style: 'short', localeMatcher: 'best fit'};
89 …: Intl.RelativeTimeFormatOptions = {numeric: 'always', style: 'narrow', localeMatcher: 'best fit'};
127 …ions: Intl.RelativeTimeFormatOptions = {numeric: 'auto', style: 'long', localeMatcher: 'best fit'};
146 …ons: Intl.RelativeTimeFormatOptions = {numeric: 'auto', style: 'short', localeMatcher: 'best fit'};
165 …ns: Intl.RelativeTimeFormatOptions = {numeric: 'auto', style: 'narrow', localeMatcher: 'best fit'};
295 { localeMatcher: "best fit" } as Intl.RelativeTimeFormatOptions,
DIntlNumberFormatSupportedLocalesOfTest2.ets33 localeMatcher: 'best fit'
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/decl_field/
Ddecl-st-field-n.ets22 …public static d: {{c.to_type}} = {{c.expr|safe}} // constant expression value doesn't fit in the …
Ddecl-field-n.ets22 …public d: {{c.to_type}} = {{c.expr|safe}} // constant expression value doesn't fit in the field t…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/comp_arr/
Dcomp-arr-n.ets22 // constant expression doesn't fit in array type range
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/decl_const/
Ddecl-const-n.ets22 …const d: {{c.to_type}} = {{c.expr|safe}} // constant expression value doesn't fit in the constant…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/assn_var/
Dassn-var-n.ets24 d = {{c.expr|safe}} // constant expression value doesn't fit in the variable type range
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/decl_var/
Ddecl-var-n.ets22 …let d: {{c.to_type}} = {{c.expr|safe}} // constant expression value doesn't fit in the variable t…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/comp_obj/
Dcomp-clss-n.ets24 // constant expression doesn't fit in the field type range
Dcomp-intf-n.ets24 // constant expression value doesn't fit in the field type range
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/call_func/
Dcall-func-n.ets24 let x = foo({{c.expr|safe}}) // constant expression doesn't fit in the parameter type range
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/call_lmbd/
Dcall-lmbd-n.ets23 // constant expression value doesn't fit in parameter type range
Dcall-lmbd-n2.ets25 // expression value may fit in parameter type range but it is not a constant expression
/arkcompiler/ets_runtime/ecmascript/
Djs_segmenter.cpp101 …Let matcher be ? GetOption(options, "localeMatcher", string, « "lookup", "best fit" », "best fit"). in InitializeSegmenter()
105 {"lookup", "best fit"}, LocaleMatcherOption::BEST_FIT); in InitializeSegmenter()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/call_cons/
Dcall-cons-n.ets27 // constant expression value doesn't fit in the parameter type range
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/05.implicit_conversions/03.constant_narrowing_integer_conversion/call_meth/
Dcall-meth-n.ets27 let x = a.meth({{c.expr|safe}}) // const expression value doesn't fit in parameter range
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/debugger/
Dobject_repository.cpp192 auto fIt = frames_.find(id); in GetProperties() local
193 if (fIt != frames_.end()) { in GetProperties()
195 return fIt->second; in GetProperties()
/arkcompiler/toolchain/tooling/static/debugger/
Dobject_repository.cpp191 auto fIt = frames_.find(id); in GetProperties() local
192 if (fIt != frames_.end()) { in GetProperties()
194 return fIt->second; in GetProperties()

123456