Searched refs:supportedLocalesOf (Results 1 - 3 of 3) sorted by relevance
/external/v8/test/intl/general/ |
H A D | supported-locales-of.js | 28 // Tests supportedLocalesOf method. 30 var undef = Intl.DateTimeFormat.supportedLocalesOf(); 33 var empty = Intl.DateTimeFormat.supportedLocalesOf([]); 36 var strLocale = Intl.DateTimeFormat.supportedLocalesOf('sr'); 40 Intl.DateTimeFormat.supportedLocalesOf(['sr-Thai-RS', 'de', 'zh-CN']);
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-builtinbust-7.js | 10 assertDoesNotThrow(function() { Intl.Collator.supportedLocalesOf("en"); });
|
/external/v8/src/js/ |
H A D | i18n.js | 271 function supportedLocalesOf(service, locales, options) { function 1056 InstallFunction(Intl.Collator, 'supportedLocalesOf', function(locales) { 1061 return supportedLocalesOf('collator', locales, arguments[1]); 1319 InstallFunction(Intl.NumberFormat, 'supportedLocalesOf', function(locales) { 1324 return supportedLocalesOf('numberformat', locales, arguments[1]); 1732 InstallFunction(Intl.DateTimeFormat, 'supportedLocalesOf', function(locales) { 1737 return supportedLocalesOf('dateformat', locales, arguments[1]); 1910 InstallFunction(Intl.v8BreakIterator, 'supportedLocalesOf', 1916 return supportedLocalesOf('breakiterator', locales, arguments[1]);
|
Completed in 127 milliseconds