Lines Matching defs:options

46 Maybe<CaseFirst> GetCaseFirst(Isolate* isolate, Handle<JSReceiver> options,
49 isolate, options, "caseFirst", method_name, {"upper", "lower", "false"},
55 void CreateDataPropertyForOptions(Isolate* isolate, Handle<JSObject> options,
64 isolate, options, key, value_str, Just(kDontThrow));
69 void CreateDataPropertyForOptions(Isolate* isolate, Handle<JSObject> options,
76 isolate, options, key, value_obj, Just(kDontThrow));
86 Handle<JSObject> options =
210 isolate, options, isolate->factory()->locale_string(),
218 isolate, options, isolate->factory()->locale_string(), locale.c_str());
221 CreateDataPropertyForOptions(isolate, options,
224 isolate, options, isolate->factory()->sensitivity_string(), sensitivity);
225 CreateDataPropertyForOptions(isolate, options,
229 isolate, options, isolate->factory()->collation_string(), collation);
230 CreateDataPropertyForOptions(isolate, options,
233 isolate, options, isolate->factory()->caseFirst_string(), case_first);
234 return options;
288 // 2. Set options to ? CoerceOptionsToObject(options).
289 Handle<JSReceiver> options;
291 isolate, options, CoerceOptionsToObject(isolate, options_obj, service),
294 // 4. Let usage be ? GetOption(options, "usage", "string", « "sort",
297 isolate, options, "usage", service, {"sort", "search"},
302 // 9. Let matcher be ? GetOption(options, "localeMatcher", "string",
306 Intl::GetLocaleMatcher(isolate, options, service);
315 isolate, options, "collation", empty_values, service, &collation_str);
333 // 11. Let numeric be ? GetOption(options, "numeric", "boolean",
345 GetBoolOption(isolate, options, "numeric", service, &numeric);
348 // 14. Let caseFirst be ? GetOption(options, "caseFirst", "string",
350 Maybe<CaseFirst> maybe_case_first = GetCaseFirst(isolate, options, service);
399 // the options object to ICU is to use the 'co' extension keyword.
444 // If the numeric value is passed in through the options object,
460 // If the caseFirst value is passed in through the options object,
480 // 24. Let sensitivity be ? GetOption(options, "sensitivity",
483 GetStringOption<Sensitivity>(isolate, options, "sensitivity", service,
520 // 27.Let ignorePunctuation be ? GetOption(options,
524 isolate, options, "ignorePunctuation", service, &ignore_punctuation);