/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
char16_t_unshift.pass.cpp | 10 // <locale> 17 #include <locale> 26 std::locale l = std::locale::classic();
|
char32_t_length.pass.cpp | 10 // <locale> 16 #include <locale> 23 std::locale l = std::locale::classic();
|
char32_t_unshift.pass.cpp | 10 // <locale> 17 #include <locale> 26 std::locale l = std::locale::classic();
|
char_length.pass.cpp | 10 // <locale> 16 #include <locale> 23 std::locale l = std::locale::classic();
|
char_unshift.pass.cpp | 10 // <locale> 17 #include <locale> 26 std::locale l = std::locale::classic();
|
wchar_t_length.pass.cpp | 10 // <locale> 16 #include <locale> 23 std::locale l = std::locale::classic();
|
wchar_t_unshift.pass.cpp | 10 // <locale> 19 #include <locale> 28 std::locale l = std::locale::classic();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/locale.ctype.members/ |
narrow_1.pass.cpp | 10 // <locale> 16 #include <locale> 21 std::locale l = std::locale::classic();
|
narrow_many.pass.cpp | 10 // <locale> 16 #include <locale> 23 std::locale l = std::locale::classic();
|
tolower_1.pass.cpp | 10 // <locale> 16 #include <locale> 21 std::locale l = std::locale::classic();
|
tolower_many.pass.cpp | 10 // <locale> 16 #include <locale> 22 std::locale l = std::locale::classic();
|
toupper_1.pass.cpp | 10 // <locale> 16 #include <locale> 21 std::locale l = std::locale::classic();
|
toupper_many.pass.cpp | 10 // <locale> 16 #include <locale> 22 std::locale l = std::locale::classic();
|
widen_1.pass.cpp | 10 // <locale> 16 #include <locale> 21 std::locale l = std::locale::classic();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/facet.numpunct/locale.numpunct/facet.numpunct.members/ |
falsename.pass.cpp | 10 // <locale> 16 #include <locale> 21 std::locale l = std::locale::classic();
|
grouping.pass.cpp | 10 // <locale> 16 #include <locale> 21 std::locale l = std::locale::classic();
|
truename.pass.cpp | 10 // <locale> 16 #include <locale> 21 std::locale l = std::locale::classic();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.types/locale.facet/ |
facet.pass.cpp | 10 // <locale> 12 // class locale::facet 23 #include <locale> 27 : public std::locale::facet 31 : std::locale::facet(refs)
|
/packages/apps/Settings/src/com/android/settings/inputmethod/ |
UserDictionarySettingsUtils.java | 25 import java.util.Locale; 33 // CAVEAT: localeStr should not be null because a null locale stands for the system 34 // locale in UserDictionary.Words.addWord. 37 final Locale locale = Utils.createLocaleFromString(localeStr); local 38 final Locale systemLocale = context.getResources().getConfiguration().locale; 39 return locale.getDisplayName(systemLocale);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/ |
UserDictionarySettingsUtils.java | 25 import java.util.Locale; 34 // CAVEAT: localeStr should not be null because a null locale stands for the system 35 // locale in UserDictionary.Words.addWord. 38 final Locale locale = LocaleUtils.constructLocaleFromString(localeStr); local 39 final Locale systemLocale = context.getResources().getConfiguration().locale; 40 return locale.getDisplayName(systemLocale);
|
/external/chromium_org/chrome/tools/build/ |
repack_locales.py | 40 def calc_output(locale): 41 """Determine the file that will be generated for the given locale.""" 45 if locale == 'fake-bidi': 46 return '%s/%s.pak' % (INT_DIR, locale) 48 # For Cocoa to find the locale at runtime, it needs to use '_' instead 51 if locale == 'en-US': 52 locale = 'en' 53 return '%s/repack/%s.lproj/locale.pak' % (INT_DIR, locale.replace('-', '_')) 55 return os.path.join(INT_DIR, 'repack', locale + '.pak' [all...] |
/external/chromium_org/base/test/ |
scoped_locale.h | 14 // Sets the given |locale| on construction, and restores the previous locale 18 explicit ScopedLocale(const std::string& locale);
|
/external/e2fsprogs/intl/ |
localcharset.c | 1 /* Determine a canonical name for the current locale's character encoding. 58 # include <locale.h> 260 /* Determine the current locale's character encoding, and canonicalize it 285 const char *locale = NULL; local 288 (like SunOS 4 or DJGPP) have only the C locale. Therefore we don't 290 locale name the user has set. */ 292 locale = setlocale (LC_CTYPE, NULL); 294 if (locale == NULL || locale[0] == '\0') 296 locale = getenv ("LC_ALL") 322 const char *locale; local [all...] |
/external/icu4c/i18n/ |
upluralrules.cpp | 21 uplrules_open(const char *locale, UErrorCode *status) 23 return uplrules_openForType(locale, UPLURAL_TYPE_CARDINAL, status); 27 uplrules_openForType(const char *locale, UPluralType type, UErrorCode *status) 29 return (UPluralRules*)PluralRules::forLocale(Locale(locale), type, *status);
|
/libcore/luni/src/main/java/java/text/spi/ |
CollatorProvider.java | 21 import java.util.Locale; 27 * <p>Note that Android does not support user-supplied locale service providers. 40 * Returns an instance of {@code Collator} for the given locale. 42 * @param locale the locale 44 * @throws NullPointerException if {@code locale == null} 46 * if locale isn't one of the locales returned from 49 public abstract Collator getInstance(Locale locale);
|