/external/stlport/test/unit/ |
c_locale_header_test.c | 8 #include <locale.h>
|
locale_header_test.cpp | 9 # include <locale>
|
messages_facets_test.cpp | 4 # include <locale> 17 * Check of the 22.1.1.2.7 standard point. Construction of a locale 24 locale loc(locale::classic(), new messages_byname<char>(static_cast<char const*>(0))); 36 locale loc(locale::classic(), new messages_byname<char>("yasli_language")); 48 locale loc(locale::classic(), new messages_byname<char>("")); 62 locale loc(locale::classic(), new messages_byname<wchar_t>(static_cast<char const*>(0))) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
c_locale_header_test.c | 8 #include <locale.h>
|
locale_header_test.cpp | 9 # include <locale>
|
messages_facets_test.cpp | 4 # include <locale> 17 * Check of the 22.1.1.2.7 standard point. Construction of a locale 24 locale loc(locale::classic(), new messages_byname<char>(static_cast<char const*>(0))); 36 locale loc(locale::classic(), new messages_byname<char>("yasli_language")); 48 locale loc(locale::classic(), new messages_byname<char>("")); 62 locale loc(locale::classic(), new messages_byname<wchar_t>(static_cast<char const*>(0))) [all...] |
/ndk/tests/device/test-stlport/unit/ |
c_locale_header_test.c | 8 #include <locale.h>
|
locale_header_test.cpp | 9 # include <locale>
|
messages_facets_test.cpp | 4 # include <locale> 17 * Check of the 22.1.1.2.7 standard point. Construction of a locale 24 locale loc(locale::classic(), new messages_byname<char>(static_cast<char const*>(0))); 36 locale loc(locale::classic(), new messages_byname<char>("yasli_language")); 48 locale loc(locale::classic(), new messages_byname<char>("")); 62 locale loc(locale::classic(), new messages_byname<wchar_t>(static_cast<char const*>(0))) [all...] |
/external/compiler-rt/lib/msan/lit_tests/ |
setlocale.cc | 4 #include <locale.h> 8 char *locale = setlocale (LC_ALL, ""); local 9 assert(locale); 10 if (locale[0])
|
/ndk/sources/android/support/src/locale/ |
setlocale.c | 31 char *setlocale(int category, const char *locale) { 33 if (locale == NULL) { 38 if (*locale && strcmp(locale, "C") && strcmp(locale, "POSIX")) {
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.types/locale.category/ |
category.pass.cpp | 15 // <locale> 19 #include <locale> 29 static_assert((std::is_same<std::locale::category, int>::value), ""); 30 assert(std::locale::none == 0); 31 assert(std::locale::collate); 32 assert(std::locale::ctype); 33 assert(std::locale::monetary); 34 assert(std::locale::numeric); 35 assert(std::locale::time); 36 assert(std::locale::messages) [all...] |
/external/clang/test/CodeGenCXX/ |
debug-info-context.cpp | 4 class locale { class 10 locale _M_ios_locale;
|
/frameworks/support/v4/java/android/support/v4/text/ |
ICUCompat.java | 24 public String getScript(String locale); 25 public String addLikelySubtags(String locale); 30 public String getScript(String locale) { 35 public String addLikelySubtags(String locale) { 36 return locale; 42 public String getScript(String locale) { 43 return ICUCompatIcs.getScript(locale); 47 public String addLikelySubtags(String locale) { 48 return ICUCompatIcs.addLikelySubtags(locale); 66 * @param locale The locale [all...] |
/external/smack/src/org/apache/harmony/javax/security/auth/callback/ |
LanguageCallback.java | 21 import java.util.Locale; 27 private Locale locale; field in class:LanguageCallback 33 public Locale getLocale() { 34 return locale; 37 public void setLocale(Locale locale) { 38 this.locale = locale;
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
ContentLanguage.java | 31 import java.util.Locale; 93 protected Locale locale; 121 if ( "".equals(locale.getCountry())) { 122 return locale.getLanguage(); 124 return locale.getLanguage() + '-' + locale.getCountry(); 135 this.locale = new Locale(languageTag.substring(0,slash), languageTag.substring(slash+1) ); 137 this.locale = new Locale(languageTag) 92 protected Locale locale; field in class:ContentLanguage [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.members/ |
name.pass.cpp | 10 // <locale> 14 #include <locale> 17 #include "platform_support.h" // locale name macros 22 std::locale loc; 26 std::locale loc(LOCALE_en_US_UTF_8);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.global.templates/ |
has_facet.pass.cpp | 10 // <locale> 12 // template <class Facet> bool has_facet(const locale& loc) throw(); 14 #include <locale> 18 : public std::locale::facet 20 static std::locale::id id; 23 std::locale::id my_facet::id; 27 std::locale loc; 30 std::locale loc2(loc, new my_facet);
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
TextBreakIteratorInternalICU.cpp | 36 DEFINE_STATIC_LOCAL(CString, locale, (defaultLanguage().latin1())); 37 return locale.data();
|
/ndk/sources/cxx-stl/llvm-libc++/test/ |
test_1.cc | 12 #include <locale> 24 // #5 0x00010be0 in std::__1::locale::__imp::use_facet (this=0x80b28, id=28) at jni/../../../libcxx/src/locale.cpp:426 25 // #6 0x00010f50 in std::__1::locale::use_facet (this=0xbe980ab4, x=...) at jni/../../../libcxx/src/locale.cpp:568 34 // locale::id::__get() reaches 28, which is an invalid index in the 35 // facets_ vector defined in locale.cpp:124 and populated in 36 // locale::__imp::__imp(size_t) in the same source file. 39 std::cout.imbue(std::locale("C"));
|
/ndk/sources/android/support/ |
Android.mk | 9 src/locale/duplocale.c \ 10 src/locale/freelocale.c \ 11 src/locale/localeconv.c \ 12 src/locale/newlocale.c \ 13 src/locale/uselocale.c \ 48 src/musl-locale/catclose.c \ 49 src/musl-locale/catgets.c \ 50 src/musl-locale/catopen.c \ 51 src/musl-locale/iconv.c \ 52 src/musl-locale/intl.c [all...] |
/bionic/libc/bionic/ |
setlocale.cpp | 29 #include <locale.h> 33 char* setlocale(int /*category*/, char const* /*locale*/) {
|
/external/chromium_org/base/test/ |
scoped_locale.cc | 7 #include <locale.h> 13 ScopedLocale::ScopedLocale(const std::string& locale) { 15 EXPECT_TRUE(setlocale(LC_ALL, locale.c_str()) != NULL) << 16 "Failed to set locale: " << locale;
|
/external/icu4c/common/ |
ustrcase_locale.cpp | 14 * Locale-sensitive case mapping functions (ones that call uloc_getDefault()) 26 ustrcase_setTempCaseMapLocale(UCaseMap *csm, const char *locale) { 42 /* the internal functions require locale!=NULL */ 43 if(locale==NULL) { 45 // changes to the default locale via uloc_setDefault(). 47 // does not cache the locale ID. 51 // and we do not need the locale ID to be canonicalized. 53 // Best is to not call case mapping functions with a NULL locale ID. 54 locale=uloc_getDefault(); 56 for(i=0; i<4 && (c=locale[i])!=0 && c!='-' && c!='_'; ++i) [all...] |
/libcore/luni/src/main/java/java/text/spi/ |
BreakIteratorProvider.java | 21 import java.util.Locale; 27 * <p>Note that Android does not support user-supplied locale service providers. 41 * given locale. 43 * @param locale the locale 45 * @throws NullPointerException if {@code locale == null} 47 * if locale isn't one of the locales returned from 50 public abstract BreakIterator getWordInstance(Locale locale); 54 * given locale [all...] |