Lines Matching defs:options
22 // 18.1.1 Intl.Segmenter ( [ locales [ , options ] ] )
44 // 3. Perform ? InitializeSegmenter(segmenter, locales, options).
46 JSHandle<JSTaggedValue> options = GetCallArg(argv, 1);
47 JSSegmenter::InitializeSegmenter(thread, segmenter, locales, options);
52 // 18.2.2 Intl.Segmenter.supportedLocalesOf ( locales [ , options ] )
67 // 3. Return ? SupportedLocales(availableLocales, requestedLocales, options).
68 JSHandle<JSTaggedValue> options = GetCallArg(argv, 1);
69 JSHandle<JSArray> result = JSLocale::SupportedLocales(thread, availableLocales, requestedLocales, options);
114 // 3. Let options be OrdinaryObjectCreate(%Object.prototype%).
119 JSHandle<JSObject> options(factory->NewJSObjectByConstructor(ctor));
123 JSSegmenter::ResolvedOptions(thread, segmenter, options);
125 // 5. Return options.
126 return options.GetTaggedValue();