Lines Matching defs:options
187 Handle<Object> locales, Handle<Object> options,
193 return T::New(isolate, map, locales, options, method_name);
918 IsolateT* isolate, Handle<Object> locales, Handle<Object> options) {
919 if (!options->IsUndefined(isolate)) {
968 Handle<Object> locales, Handle<Object> options, const char* method_name) {
970 // options is undefined, as that is the only case when the specified
974 options->IsUndefined(isolate);
976 // `options` arguments.
978 CompareStringsOptionsFor(isolate, locales, options);
980 // Both locales and options are undefined, check the cache.
998 New<JSCollator>(isolate, constructor, locales, options, method_name);
1462 Handle<Object> options,
1469 // options is undefined, as that is the only case when the specified
1472 options->IsUndefined(isolate);
1490 // 2. Let numberFormat be ? Construct(%NumberFormat%, « locales, options »).
1493 New<JSNumberFormat>(isolate, constructor, locales, options, method_name),
1511 Isolate* isolate, Handle<JSReceiver> options, int mnfd_default,
1516 // 5. Let mnid be ? GetNumberOption(options, "minimumIntegerDigits,", 1, 21,
1519 if (!GetNumberOption(isolate, options, factory->minimumIntegerDigits_string(),
1525 // 6. Let mnfd be ? Get(options, "minimumFractionDigits").
1529 JSReceiver::GetProperty(isolate, options,
1533 // 7. Let mxfd be ? Get(options, "maximumFractionDigits").
1537 JSReceiver::GetProperty(isolate, options,
1541 // 8. Let mnsd be ? Get(options, "minimumSignificantDigits").
1545 JSReceiver::GetProperty(isolate, options,
1549 // 9. Let mxsd be ? Get(options, "maximumSignificantDigits").
1553 JSReceiver::GetProperty(isolate, options,
1565 // 11. Let roundingPriority be ? GetOption(options, "roundingPriority",
1570 isolate, options, "roundingPriority", "SetNumberFormatDigitOptions",
1978 // ECMA 402 9.2.9 SupportedLocales(availableLocales, requestedLocales, options)
1983 const std::vector<std::string>& requested_locales, Handle<Object> options) {
1986 // 1. Set options to ? CoerceOptionsToObject(options).
1990 CoerceOptionsToObject(isolate, options, method_name), JSObject);
1992 // 2. Let matcher be ? GetOption(options, "localeMatcher", "string",
2219 Handle<Object> options) {
2227 // Return ? SupportedLocales(availableLocales, requestedLocales, options).
2229 requested_locales.FromJust(), options);
2639 Handle<JSReceiver> options,
2642 isolate, options, "localeMatcher", method_name, {"best fit", "lookup"},
2648 Handle<JSReceiver> options,
2652 Maybe<bool> maybe = GetStringOption(isolate, options, "numberingSystem",