/external/chromium_org/v8/test/intl/number-format/ |
check-digit-ranges.js | 31 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: 0})'); 32 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: 22})'); 33 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: null})'); 34 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: Infinity})'); 35 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: -Infinity})'); 36 assertThrows('Intl.NumberFormat(undefined, {minimumIntegerDigits: x})'); 38 assertThrows('Intl.NumberFormat(undefined, {minimumFractionDigits: -1})'); 39 assertThrows('Intl.NumberFormat(undefined, {maximumFractionDigits: 21})'); 41 assertThrows('Intl.NumberFormat(undefined, {minimumSignificantDigits: 0})'); 42 assertThrows('Intl.NumberFormat(undefined, {maximumSignificantDigits: 22})') [all...] |
default-locale.js | 31 var nf = new Intl.NumberFormat([]); 43 var nfNone = new Intl.NumberFormat();
|
/external/chromium_org/v8/test/intl/date-format/ |
timezone.js | 30 var df = Intl.DateTimeFormat(); 33 df = Intl.DateTimeFormat(undefined, {timeZone: 'UtC'}); 36 df = Intl.DateTimeFormat(undefined, {timeZone: 'gmt'}); 39 df = Intl.DateTimeFormat(undefined, {timeZone: 'America/Los_Angeles'}); 42 df = Intl.DateTimeFormat(undefined, {timeZone: 'Europe/Belgrade'}); 46 df = Intl.DateTimeFormat(undefined, {timeZone: 'Etc/UTC'}); 49 df = Intl.DateTimeFormat(undefined, {timeZone: 'Etc/GMT'}); 52 df = Intl.DateTimeFormat(undefined, {timeZone: 'euRope/beLGRade'}); 56 assertThrows('Intl.DateTimeFormat(undefined, {timeZone: \'GMT+07:00\'})'); 57 assertThrows('Intl.DateTimeFormat(undefined, {timeZone: \'GMT+0700\'})') [all...] |
default-locale.js | 31 var dtf = new Intl.DateTimeFormat([]); 43 var dtfNone = new Intl.DateTimeFormat();
|
/external/chromium_org/v8/test/intl/overrides/ |
security.js | 28 // Test that we always use original Intl.Constructors for toLocaleString calls. 34 Intl.Collator = Intl.NumberFormat = Intl.DateTimeFormat = throwError; 36 Intl.Collator.prototype.compare = throwError; 37 Intl.NumberFormat.prototype.format = throwError; 38 Intl.DateTimeFormat.prototype.format = throwError; 41 assertThrows('new Intl.Collator()'); 42 assertThrows('new Intl.NumberFormat()'); 43 assertThrows('new Intl.DateTimeFormat()') [all...] |
date.js | 34 var dtfDate = new Intl.DateTimeFormat(); 35 var dtfTime = new Intl.DateTimeFormat( 37 var dtfAll = new Intl.DateTimeFormat( 47 dtfDate = new Intl.DateTimeFormat(locale); 48 dtfTime = new Intl.DateTimeFormat( 50 dtfAll = new Intl.DateTimeFormat( 62 var dtf = new Intl.DateTimeFormat(locale, options);
|
number.js | 35 var nf = new Intl.NumberFormat(); 42 nf = new Intl.NumberFormat(locale); 51 nf = new Intl.NumberFormat(locale, options);
|
/external/chromium_org/v8/test/intl/general/ |
mapped-locale.js | 30 var nf = Intl.NumberFormat(['zh-TW'], {localeMatcher: 'lookup'}); 33 var nf = Intl.NumberFormat(['zh-Hant-TW'], {localeMatcher: 'lookup'}); 36 var nf = Intl.NumberFormat(['zh-Hant'], {localeMatcher: 'lookup'}); 39 nf = Intl.NumberFormat(['zh'], {localeMatcher: 'lookup'}); 42 nf = Intl.NumberFormat(['zh-CN'], {localeMatcher: 'lookup'}); 45 nf = Intl.NumberFormat(['zh-Hans-CN'], {localeMatcher: 'lookup'}); 48 nf = Intl.NumberFormat(['zh-Hans'], {localeMatcher: 'lookup'}); 51 nf = Intl.NumberFormat(['en-US'], {localeMatcher: 'lookup'});
|
supported-locales-of.js | 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']);
|
/docs/source.android.com/templates/ |
footer | 7 <a href="http://www.google.com/intl/en/policies/">Privacy & Terms</a>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/ |
types.pass.cpp | 25 // static const bool intl = International; 44 test(std::moneypunct<char, false>::intl); 45 test(std::moneypunct<char, true>::intl); 46 test(std::moneypunct<wchar_t, false>::intl); 47 test(std::moneypunct<wchar_t, true>::intl);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
tsmthred.h | 37 * test that intl functions work in a multithreaded context
|
/external/chromium_org/v8/test/intl/collator/ |
default-locale.js | 31 var collator = new Intl.Collator([]); 43 var collatorNone = new Intl.Collator(); 47 var collatorBraket = new Intl.Collator({}); 50 var collatorWithOptions = new Intl.Collator(undefined, {usage: 'search'});
|
/external/icu4c/test/intltest/ |
tsmthred.h | 43 * test that intl functions work in a multithreaded context
|
/external/chromium_org/v8/src/ |
i18n.js | 32 * Intl object is a single object that has some named properties, 35 $Object.defineProperty(global, "Intl", { enumerable: false, value: (function() { 39 var Intl = {}; 975 * Constructs Intl.Collator object given optional locales and options 980 %SetProperty(Intl, 'Collator', function() { 984 if (!this || this === Intl) { 986 return new Intl.Collator(locales, options); 998 %SetProperty(Intl.Collator.prototype, 'resolvedOptions', function() { 1006 'or on a object that is not Intl.Collator.'); 1025 %FunctionSetName(Intl.Collator.prototype.resolvedOptions, 'resolvedOptions') [all...] |
/external/chromium_org/v8/test/intl/break-iterator/ |
default-locale.js | 31 var iterator = new Intl.v8BreakIterator([]); 43 var iteratorNone = new Intl.v8BreakIterator(); 47 var iteratorBraket = new Intl.v8BreakIterator({});
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
intl.h | 0 /* intl.h - internationalization 70 #endif /* intl.h */
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
intl.h | 0 /* intl.h - internationalization 70 #endif /* intl.h */
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
intl.h | 0 /* intl.h - internationalization 70 #endif /* intl.h */
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
intl.h | 0 /* intl.h - internationalization 70 #endif /* intl.h */
|
/development/scripts/app_engine_server/ |
memcache_zipserve.py | 113 intlString = 'intl/' 121 from an intl/<lang>/... directory or fall through to the default language. 146 # Do some prep for handling intl requests. Parse the url and validate 147 # the intl/lang substring, extract the url lang code (urlLangName) and the 148 # the uri that follows the intl/lang substring(contentUri) 150 isIntl = len(sections) > 2 and (sections[0] == "intl") 160 # intl/nn substring. It will later be redirected to 162 # logging.info(' Handling a MISMATCHED intl request') 167 #logging.info('INTL PREP resetting langName to urlLangName [%s]', langName) 169 # logging.info('INTL PREP no need to reset langName' [all...] |
/external/bison/m4/ |
gettext.m4 | 25 dnl INTLSYMBOL should be 'external' for packages with no intl directory, 26 dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. 28 dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, 31 dnl $(top_builddir)/intl/libintl.a will be created. 37 dnl INTLDIR is used to find the intl libraries. If empty, 38 dnl the value '$(top_builddir)/intl/' is used. 41 dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled 181 dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) 184 AC_LIB_LINKFLAGS_BODY([intl]) 241 dnl libintl. (Cf. the install rule in intl/Makefile.in. [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/m4/ |
gettext.m4 | 25 dnl INTLSYMBOL should be 'external' for packages with no intl directory, 26 dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. 28 dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, 31 dnl $(top_builddir)/intl/libintl.a will be created. 37 dnl INTLDIR is used to find the intl libraries. If empty, 38 dnl the value `$(top_builddir)/intl/' is used. 41 dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled 173 dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) 176 AC_LIB_LINKFLAGS_BODY([intl]) 221 dnl libintl. (Cf. the install rule in intl/Makefile.in. [all...] |
/external/elfutils/m4/ |
gettext.m4 | 25 dnl INTLSYMBOL should be 'external' for packages with no intl directory, 26 dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. 28 dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, 31 dnl $(top_builddir)/intl/libintl.a will be created. 37 dnl INTLDIR is used to find the intl libraries. If empty, 38 dnl the value `$(top_builddir)/intl/' is used. 41 dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled 173 dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) 176 AC_LIB_LINKFLAGS_BODY([intl]) 221 dnl libintl. (Cf. the install rule in intl/Makefile.in. [all...] |
/ndk/sources/host-tools/sed-4.2.1/m4/ |
gettext.m4 | 25 dnl INTLSYMBOL should be 'external' for packages with no intl directory, 26 dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. 28 dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, 31 dnl $(top_builddir)/intl/libintl.a will be created. 37 dnl INTLDIR is used to find the intl libraries. If empty, 38 dnl the value `$(top_builddir)/intl/' is used. 41 dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled 173 dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) 176 AC_LIB_LINKFLAGS_BODY([intl]) 221 dnl libintl. (Cf. the install rule in intl/Makefile.in. [all...] |