Lines Matching defs:options
400 Handle<JSReceiver> options;
408 // 4. Let options be ? GetOptionsObject(options).
409 ASSIGN_RETURN_ON_EXCEPTION(isolate, options,
418 // 7. Let matcher be ? GetOption(options, "localeMatcher", "string", «
421 Intl::GetLocaleMatcher(isolate, options, service);
444 // 10. Let s be ? GetOption(options, "style", "string",
447 isolate, options, "style", service, {"long", "short", "narrow"},
454 // 12. Let type be ? GetOption(options, "type", "string", « "language",
458 isolate, options, "type", service,
474 // 15. Let fallback be ? GetOption(options, "fallback", "string",
477 isolate, options, "fallback", service, {"code", "none"},
485 // 24. Let languageDisplay be ? GetOption(options, "languageDisplay",
489 isolate, options, "languageDisplay", service, {"dialect", "standard"},
550 // 4. Let options be ! ObjectCreate(%ObjectPrototype%).
551 Handle<JSObject> options = factory->NewJSObject(isolate->object_function());
565 isolate, options, factory->locale_string(), locale, Just(kDontThrow));
570 isolate, options, factory->style_string(), style, Just(kDontThrow));
575 isolate, options, factory->type_string(), type, Just(kDontThrow));
580 isolate, options, factory->fallback_string(), fallback, Just(kDontThrow));
586 JSReceiver::CreateDataProperty(isolate, options,
593 return options;