HomeSort by relevance Sort by last modified time
    Searched full:locales (Results 1 - 25 of 532) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/data/
icu-config.xml 11 <locales>
12 <include locales="af"/>
13 <include locales="af_NA"/>
14 <include locales="af_ZA"/>
15 <include locales="ak"/>
16 <include locales="ak_GH"/>
17 <include locales="am"/>
18 <include locales="am_ET"/>
19 <include locales="ar"/>
20 <include locales="ar_AE"/>
    [all...]
  /external/chromium/chrome/common/extensions/
extension_l10n_util.h 65 // Extends list of Chrome locales to them and their parents, so we can do
69 // Adds valid locales to the extension.
71 // 2. Get list of Chrome locales.
74 // Returns false if any of supplied locales don't match chrome list of locales.
77 std::set<std::string>* locales,
80 // Loads messages file for default locale, and application locales (application
81 // locales doesn't have to exist). Application locale is current locale and its
93 // belong to Chrome locales.
96 // |all_locales| is a set of all valid Chrome locales
    [all...]
extension_l10n_util_unittest.cc 33 std::set<std::string> locales; local
35 &locales,
38 EXPECT_TRUE(locales.empty());
50 std::set<std::string> locales; local
52 &locales,
55 EXPECT_TRUE(locales.empty());
75 std::set<std::string> locales; local
77 &locales,
80 EXPECT_FALSE(locales.empty());
81 EXPECT_TRUE(locales.find("sr") != locales.end())
96 std::set<std::string> locales; local
117 std::set<std::string> locales; local
    [all...]
extension_resource_unittest.cc 60 std::vector<std::string> locales; local
61 l10n_util::GetParentLocales(l10n_util::GetApplicationLocale(""), &locales);
62 ASSERT_FALSE(locales.empty());
63 for (size_t i = 0; i < locales.size(); i++) {
65 make_path = l10n_path.AppendASCII(locales[i]);
  /external/chromium/build/
apply_locales.py 18 help='map "en-US" to "en" and "-" to "_" in locales')
23 print 'ERROR: need string and list of locales'
27 locales = arglist[2:]
30 for locale in locales:
  /external/icu4c/test/perf/normperf/
dtfmtrtperf.cpp 26 TESTCASE(1,RoundTripLocale10); // 10 locales
27 TESTCASE(2,RoundTripLocale11); // 11 locales
28 TESTCASE(3,RoundTripLocale21); // 21 locales w/ reverse order
  /libcore/luni/src/test/java/libcore/java/text/
BreakIteratorTest.java 32 Locale[] locales = BreakIterator.getAvailableLocales(); local
33 assertTrue("Array available locales is null", locales != null);
34 assertTrue("Array available locales is 0-length",
35 (locales != null && locales.length != 0));
37 for (Locale l : locales) {
  /external/icu4c/stubdata/
icu_dat_generator.py 86 def WriteIndex(path, locales, cldr_version=None):
94 for locale in locales:
113 # Go through the list and generate res_index.txt for locales, brkitr,
122 locales = set()
146 locales.add(line[:end])
153 "locales": locales,
160 for locales in kind_to_locales.itervalues():
161 every_locale = every_locale.union(locales)
164 for kind, locales in kind_to_locales.items()
    [all...]
  /libcore/luni/src/main/java/java/text/spi/
BreakIteratorProvider.java 47 * if locale isn't one of the locales returned from
60 * if locale isn't one of the locales returned from
73 * if locale isn't one of the locales returned from
86 * if locale isn't one of the locales returned from
DateFormatProvider.java 48 * if locale isn't one of the locales returned from
62 * if locale isn't one of the locales returned from
77 * if locale isn't one of the locales returned from
NumberFormatProvider.java 47 * if locale isn't one of the locales returned from
63 * if locale isn't one of the locales returned from
76 * if locale isn't one of the locales returned from
89 * if locale isn't one of the locales returned from
  /packages/inputmethods/LatinIME/java/
Android.mk 20 # Include all the resources regardless of system supported locales
  /external/icu4c/test/intltest/
tzfmttst.cpp 86 // Set up test locales
94 const Locale *LOCALES;
98 LOCALES = testLocales;
101 LOCALES = Locale::getAvailableLocales(nLocales);
117 SimpleDateFormat *sdf = new SimpleDateFormat((UnicodeString)PATTERNS[patidx], LOCALES[locidx], status);
120 PATTERNS[patidx] + " for locale " + LOCALES[locidx].getName() + " - " + u_errorName(status));
187 + ", locale=" + LOCALES[locidx].getName() + ", pattern=" + PATTERNS[patidx]
192 + ", locale=" + LOCALES[locidx].getName() + ", pattern=" + PATTERNS[patidx]
217 + ", locale=" + LOCALES[locidx].getName() + ", pattern=" + PATTERNS[patidx]
225 + ", locale=" + LOCALES[locidx].getName() + ", pattern=" + PATTERNS[patidx
246 const Locale* locales; \/\/ Static member in struct:LocaleData
    [all...]
tsdate.cpp 253 const Locale* locales = DateFormat::getAvailableLocales(count); local
254 logln((UnicodeString)"" + count + " available locales");
255 if (locales && count)
262 all += locales[i].getName();
266 else dataerrln((UnicodeString)"**** FAIL: Zero available locales or null array pointer");
272 const Locale* locales = DateFormat::getAvailableLocales(count); local
273 if (locales && count)
276 logln("quick test: testing just 3 locales!");
281 UnicodeString name = UnicodeString(locales[i].getName(), "");
283 testLocale(/*par, */locales[i], name)
    [all...]
tsnmfmt.cpp 389 const Locale* locales = NumberFormat::getAvailableLocales(count); local
390 logln((UnicodeString)"" + count + " available locales");
391 if (locales && count)
399 all += locales[i].getName();
404 dataerrln((UnicodeString)"**** FAIL: Zero available locales or null array pointer");
412 Locale* locales = (Locale*)allLocales; local
417 logln("quick test: testing just 6 locales!");
419 locales = quickLocales;
420 locales[0] = allLocales[0];
421 locales[1] = allLocales[1]
    [all...]
dtifmtts.h 40 * Stress test -- stress test formatting on 40 locales
tufmtts.cpp 37 const char* locales[] = {"en", "sl", "fr", "zh", "ar", "ru", "zh_Hant", "pa"}; local
39 locIndex < sizeof(locales)/sizeof(locales[0]);
42 Locale loc(locales[locIndex]);
49 std::cout << "locale: " << locales[locIndex] << "\n";
214 const char* locales[] = {"el-GR", "el"}; local
256 locIndex < sizeof(locales)/sizeof(locales[0]);
259 Locale l = Locale::createFromName(locales[locIndex]);
286 std::cout << "Failed to get TimeUnitFormat for " << locales[locIndex] << "\n" local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidLocaleTest.java 30 * our ICU configuration is correct and contains all the needed locales and
51 * Tests some must-have locales. TODO: Add back "de". See discussion
91 // Test some must-have locales.
122 // This one makes sure we have all necessary locales installed.
125 String[] locales = new String[] { local
126 // List of locales currently required for Android.
135 for (int i = 0; i < locales.length; i++) {
136 Locale l = new Locale(locales[i].substring(0, 2), locales[i].substring(3));
140 assertEquals("Monday name for " + locales[i] + " must match"
    [all...]
  /build/target/product/
languages_full.mk 19 # mostly because screen densities interfere with the list of locales and
22 # Those are all the locales that have translations and are displayable
  /frameworks/base/packages/SystemUI/res/values/
donottranslate.xml 21 In Roman locales we now show only the date, but DOW is available for other locales if
  /external/icu4c/common/
common.vcxproj.filters 32 <Filter Include="locales &amp; resources">
299 <Filter>locales &amp; resources</Filter>
302 <Filter>locales &amp; resources</Filter>
305 <Filter>locales &amp; resources</Filter>
308 <Filter>locales &amp; resources</Filter>
311 <Filter>locales &amp; resources</Filter>
314 <Filter>locales &amp; resources</Filter>
317 <Filter>locales &amp; resources</Filter>
320 <Filter>locales &amp; resources</Filter>
323 <Filter>locales &amp; resources</Filter>
    [all...]
  /development/apps/CustomLocale/src/com/android/customlocale2/
CustomLocaleActivity.java 49 * Displays the list of system locales as well as maintain a custom list of user
50 * locales. The user can select a locale and apply it or it can create or remove
70 /** List view displaying system and custom locales. */
213 // Insert all system locales
214 String[] locales = getAssets().getLocales(); local
215 for (String locale : locales) {
221 locales = null;
223 // Insert all custom locales
238 // Sort all locales by code
323 // Enable the remove button only for custom locales and set the tag to the local
    [all...]
  /external/icu4c/layoutex/
plruns.cpp 215 * Construct a <code>LocaleRuns</code> object from pre-existing arrays of locales
218 * @param locales is the address of an array of locale name strings. This array,
229 ULocRuns(const char **locales, const le_int32 *limits, le_int32 count);
331 Locale **locales = LE_NEW_ARRAY(Locale *, count); local
334 locales[i] = new Locale(Locale::createFromName(localeNames[i]));
337 return (const Locale **) locales;
340 ULocRuns::ULocRuns(const char **locales, const le_int32 *limits, le_int32 count)
341 : LocaleRuns(getLocales(locales, count), limits, count), fLocaleNames(locales)
409 pl_openLocaleRuns(const char **locales,
    [all...]
  /development/apps/CustomLocale/res/values-fr/
strings.xml 17 <string name="app_name">Locales Personalisées</string>
22 <string name="header_locale_list">Liste des locales</string>
  /ndk/sources/host-tools/sed-4.2.1/lib/
string.in.h 168 "in some multibyte locales - " \
245 "in multibyte locales - " \
264 "in multibyte locales - " \
282 "in multibyte locales - " \
293 "in some multibyte locales - " \
322 "in multibyte locales - " \
349 "multibyte locales - " \
368 locales. */
372 "in multibyte locales - " \
410 "in multibyte locales - "
    [all...]

Completed in 3653 milliseconds

1 2 3 4 5 6 7 8 91011>>