| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/ |
| D | PluralRules.ets | 21 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>)…
|
| D | DateTimeFormatTypes.ets | 26 formatMatcher?: "basic" | "best fit" | "best fit";
|
| D | Intl.ets | 26 export type ListFormatLocaleMatcher = "lookup" | "best fit" 33 export type RelativeTimeFormatLocaleMatcher = "lookup" | "best fit"
|
| D | Segmenter.ets | 131 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/ |
| D | x64_abi.h | 51 * - 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/ |
| D | spec8.ets | 23 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/ |
| D | IntlPluralRulesTest.ets | 106 runTestWithOptions("fr", 1, { localeMatcher: "best fit" }, "one") 135 localeMatcher: "best fit", 163 localeMatcher: "best fit", 224 { localeMatcher: "best fit" } as Intl.SupportedLocalesOfOptions,
|
| D | IntlRelativeTimeFormatTest.ets | 51 …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,
|
| D | IntlNumberFormatSupportedLocalesOfTest2.ets | 33 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/ |
| D | decl-st-field-n.ets | 22 …public static d: {{c.to_type}} = {{c.expr|safe}} // constant expression value doesn't fit in the …
|
| D | decl-field-n.ets | 22 …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/ |
| D | comp-arr-n.ets | 22 // 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/ |
| D | decl-const-n.ets | 22 …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/ |
| D | assn-var-n.ets | 24 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/ |
| D | decl-var-n.ets | 22 …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/ |
| D | comp-clss-n.ets | 24 // constant expression doesn't fit in the field type range
|
| D | comp-intf-n.ets | 24 // 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/ |
| D | call-func-n.ets | 24 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/ |
| D | call-lmbd-n.ets | 23 // constant expression value doesn't fit in parameter type range
|
| D | call-lmbd-n2.ets | 25 // expression value may fit in parameter type range but it is not a constant expression
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | js_segmenter.cpp | 101 …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/ |
| D | call-cons-n.ets | 27 // 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/ |
| D | call-meth-n.ets | 27 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/ |
| D | object_repository.cpp | 192 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/ |
| D | object_repository.cpp | 191 auto fIt = frames_.find(id); in GetProperties() local 192 if (fIt != frames_.end()) { in GetProperties() 194 return fIt->second; in GetProperties()
|