Lines Matching defs:options
22 // 13.2.1 Intl.NumberFormat ( [ locales [ , options ] ] )
48 // 3. Perform ? InitializeNumberFormat(numberFormat, locales, options).
50 JSHandle<JSTaggedValue> options = GetCallArg(argv, 1);
51 JSNumberFormat::InitializeNumberFormat(thread, numberFormat, locales, options);
78 // 13.3.2 Intl.NumberFormat.supportedLocalesOf ( locales [ , options ] )
92 // 3. Return ? SupportedLocales(availableLocales, requestedLocales, options).
93 JSHandle<JSTaggedValue> options = GetCallArg(argv, 1);
94 JSHandle<JSArray> result = JSLocale::SupportedLocales(thread, availableLocales, requestedLocales, options);
175 // 4. Let options be ! ObjectCreate(%ObjectPrototype%).
180 JSHandle<JSObject> options(factory->NewJSObjectByConstructor(ctor));
186 // Perform ! CreateDataPropertyOrThrow(options, p, v).
187 JSNumberFormat::ResolvedOptions(thread, JSHandle<JSNumberFormat>::Cast(nf), options);
188 return options.GetTaggedValue();