/libcore/luni/src/main/java/java/text/spi/ |
DateFormatSymbolsProvider.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 DateFormatSymbols} 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 DateFormatSymbols getInstance(Locale locale);
|
DecimalFormatSymbolsProvider.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 DecimalFormatSymbols} 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 DecimalFormatSymbols getInstance(Locale locale);
|
/libcore/luni/src/main/java/java/util/spi/ |
CurrencyNameProvider.java | 20 import java.util.Locale;
25 * <p>Note that Android does not support user-supplied locale service providers.
41 * @param locale a locale
42 * @return the symbol or null if there is no available symbol in the locale
44 * if {@code code == null || locale == null}
46 * if code or locale is not in a legal format or not available
48 public abstract String getSymbol(String code, Locale locale);
|
TimeZoneNameProvider.java | 20 import java.util.Locale;
25 * <p>Note that Android does not support user-supplied locale service providers.
38 * Returns the localized name for the given time zone in the given locale.
43 * @param locale the locale
46 * if {@code id == null || locale == null}
48 * if locale is not available or style is invalid
50 public abstract String getDisplayName(String id, boolean daylight, int style, Locale locale);
|
/ndk/sources/android/support/include/ |
time.h | 39 const struct tm * timeptr, locale_t locale);
|
/ndk/sources/android/support/src/musl-locale/ |
strncasecmp_l.c | 2 #include <locale.h>
|
wcsxfrm_l.c | 3 size_t wcsxfrm_l(wchar_t *restrict dest, const wchar_t *restrict src, size_t n, locale_t locale)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/ |
codecvt_base.pass.cpp | 10 // <locale> 18 #include <locale>
|
types_char.pass.cpp | 10 // <locale> 14 // : public locale::facet, 24 #include <locale> 31 static_assert((std::is_base_of<std::locale::facet, F>::value), ""); 36 std::locale l = std::locale::classic();
|
types_char16_t.pass.cpp | 10 // <locale> 14 // : public locale::facet, 24 #include <locale> 32 static_assert((std::is_base_of<std::locale::facet, F>::value), ""); 37 std::locale l = std::locale::classic();
|
types_char32_t.pass.cpp | 10 // <locale> 14 // : public locale::facet, 24 #include <locale> 32 static_assert((std::is_base_of<std::locale::facet, F>::value), ""); 37 std::locale l = std::locale::classic();
|
types_wchar_t.pass.cpp | 10 // <locale> 14 // : public locale::facet, 24 #include <locale> 31 static_assert((std::is_base_of<std::locale::facet, F>::value), ""); 36 std::locale l = std::locale::classic();
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.ctype/ |
types.pass.cpp | 10 // <locale> 14 // : public locale::facet, 21 #include <locale> 27 std::locale l = std::locale::classic(); 36 static_assert((std::is_base_of<std::locale::facet, std::ctype<wchar_t> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.messages/locale.messages/locale.messages.members/ |
not_testable.pass.cpp | 10 // <locale> 14 // catalog open(const basic_string<char>& name, const locale&) const; 16 #include <locale>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/ |
state.pass.cpp | 10 // <locale> 16 #include <locale>
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.string/ |
ctor_codecvt_state.pass.cpp | 10 // <locale> 16 #include <locale>
|
state.pass.cpp | 10 // <locale> 16 #include <locale>
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
SynchronouslyLoadedUserBinaryDictionary.java | 28 public SynchronouslyLoadedUserBinaryDictionary(final Context context, final String locale) { 29 this(context, locale, false); 32 public SynchronouslyLoadedUserBinaryDictionary(final Context context, final String locale, 34 super(context, locale, alsoUseMoreRestrictiveLocales);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/ |
UserDictionaryLocalePicker.java | 21 import java.util.Locale; 34 public void onLocaleSelected(Locale locale);
|
/external/clang/test/SemaTemplate/ |
explicit-specialization-member.cpp | 15 class numpunct : public locale::facet // expected-error{{use of undeclared identifier 'locale'}} \ 18 static locale::id id; // expected-error{{use of undeclared identifier}}
|
/external/stlport/stlport/ |
locale.h | 27 /* evc3 doesn't have locale.h */ 30 # include_next <locale.h> 32 # include _STLP_NATIVE_C_HEADER(locale.h)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/ |
default.pass.cpp | 20 #include "platform_support.h" // locale name macros 31 std::locale::global(std::locale(LOCALE_en_US_UTF_8));
|
getloc.pass.cpp | 19 #include "platform_support.h" // locale name macros 30 std::locale::global(std::locale(LOCALE_en_US_UTF_8));
|
/ndk/sources/cxx-stl/stlport/stlport/ |
locale.h | 27 /* evc3 doesn't have locale.h */ 30 # include_next <locale.h> 32 # include _STLP_NATIVE_C_HEADER(locale.h)
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/ |
locale.h | 27 /* evc3 doesn't have locale.h */ 30 # include_next <locale.h> 32 # include _STLP_NATIVE_C_HEADER(locale.h)
|