| /external/chromium_org/third_party/icu/source/i18n/unicode/ |
| measfmt.h | 47 * locale. 48 * @param locale desired locale 53 static MeasureFormat* U_EXPORT2 createCurrencyFormat(const Locale& locale, 58 * locale.
|
| /external/chromium_org/third_party/icu/source/test/cintltst/ |
| callcoll.h | 49 void genericLocaleStarter(const char *locale, const char * const s[], uint32_t size); 50 void genericLocaleStarterWithResult(const char *locale, const char * const s[], uint32_t size, UCollationResult result); 51 void genericLocaleStarterWithOptions(const char *locale, const char * const s[], uint32_t size, const UColAttribute *attrs, const UColAttributeValue *values, uint32_t attsize); 52 void genericLocaleStarterWithOptionsAndResult(const char *locale, const char * const s[], uint32_t size, const UColAttribute *attrs, const UColAttributeValue *values, uint32_t attsize, UCollationResult result);
|
| /external/chromium_org/third_party/mesa/src/src/glsl/ |
| strtod.c | 30 #include <locale.h> 41 * Wrapper around strtod which uses the "C" locale so the decimal
|
| /external/chromium_org/ui/base/l10n/ |
| l10n_util_android.h | 17 // Return the current default locale of the device. 20 UI_EXPORT string16 GetDisplayNameForLocale(const std::string& locale,
|
| /external/clang/test/SemaTemplate/ |
| crash-10438657.cpp | 5 class collate : public locale::facet {
|
| /external/e2fsprogs/intl/ |
| dgettext.c | 25 #include <locale.h> 48 LC_MESSAGES locale. */
|
| dngettext.c | 25 #include <locale.h> 48 LC_MESSAGES locale and skip message according to the plural form. */
|
| /external/e2fsprogs/misc/ |
| nls-enable.h | 3 #include <locale.h> 14 #define LOCALEDIR "/usr/share/locale"
|
| /external/icu4c/i18n/ |
| ucurrimp.h | 16 * Internal method. Given a currency ISO code and a locale, return 31 * display name in the given locale, or as a 3-letter ISO 4217 37 * @param locale the locale of the display names to match 50 uprv_parseCurrency(const char* locale,
|
| /external/icu4c/i18n/unicode/ |
| measfmt.h | 51 * locale. 52 * @param locale desired locale 57 static MeasureFormat* U_EXPORT2 createCurrencyFormat(const Locale& locale, 62 * locale.
|
| ugender.h | 59 * Opens a new UGenderInfo object given locale. 60 * @param locale The locale for which the rules are desired. 61 * @return A UGenderInfo for the specified locale, or NULL if an error occurred. 65 ugender_getInstance(const char *locale, UErrorCode *status);
|
| /external/icu4c/samples/legacy/ |
| newcol.cpp | 27 int32_t getSortKey_current(const char *locale, const UChar *string, int32_t sLen, uint8_t *buffer, int32_t bLen) { 29 UCollator *coll = ucol_open(locale, &status); 57 void initCollator_current(const char *locale) { 59 compareCollator = ucol_open(locale, &status);
|
| /external/icu4c/test/cintltst/ |
| callcoll.h | 49 void genericLocaleStarter(const char *locale, const char * const s[], uint32_t size); 50 void genericLocaleStarterWithResult(const char *locale, const char * const s[], uint32_t size, UCollationResult result); 51 void genericLocaleStarterWithOptions(const char *locale, const char * const s[], uint32_t size, const UColAttribute *attrs, const UColAttributeValue *values, uint32_t attsize); 52 void genericLocaleStarterWithOptionsAndResult(const char *locale, const char * const s[], uint32_t size, const UColAttribute *attrs, const UColAttributeValue *values, uint32_t attsize, UCollationResult result);
|
| /external/mesa3d/src/glsl/ |
| strtod.c | 30 #include <locale.h> 41 * Wrapper around strtod which uses the "C" locale so the decimal
|
| /external/robolectric/src/main/java/com/xtremelabs/robolectric/annotation/ |
| Values.java | 4 * Indicate that roboletric should look for values that is specific for the locale 11 String locale(); method in interface:Values
|
| /external/srec/srec/include/ |
| hmmlib.h | 32 int read_word_transcription(const LCHAR* basename, vocab_info* voc, ESR_Locale* locale);
|
| /external/stlport/stlport/stl/ |
| _clocale.h | 28 # include <locale.h>
|
| /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
| main.cpp | 47 QString locale; local 51 locale = QLocale::system().name(); 53 if (!translator.load("wpa_gui_" + locale, resourceDir)) 54 translator.load("wpa_gui_" + locale, "lang");
|
| /frameworks/base/core/java/android/database/sqlite/ |
| SQLiteDatabaseConfiguration.java | 20 import java.util.Locale; 73 * The database locale. 75 * Default is the value returned by {@link Locale#getDefault()}. 77 public Locale locale; field in class:SQLiteDatabaseConfiguration 110 locale = Locale.getDefault(); 145 locale = other.locale;
|
| /frameworks/base/core/java/android/text/style/ |
| LocaleSpan.java | 24 import java.util.Locale; 27 * Changes the {@link Locale} of the text to which the span is attached. 30 private final Locale mLocale; 34 * @param locale The {@link Locale} of the text to which the span is 37 public LocaleSpan(Locale locale) { 38 mLocale = locale; 42 mLocale = new Locale(src.readString(), src.readString(), src.readString()); 63 * Returns the {@link Locale} [all...] |
| /frameworks/base/core/java/com/android/internal/app/ |
| LocalePicker.java | 40 import java.util.Locale; 49 public void onLocaleSelected(Locale locale); 62 Locale locale; field in class:LocalePicker.LocaleInfo 64 public LocaleInfo(String label, Locale locale) { 66 this.locale = locale; 73 public Locale getLocale() [all...] |
| /libcore/luni/src/main/java/java/text/ |
| DateFormatSymbols.java | 25 import java.util.Locale; 70 * Locale, necessary to lazily load time zone strings. We force the time 74 transient final Locale locale; field in class:DateFormatSymbols 83 zoneStrings = TimeZoneNames.getZoneStrings(locale); 90 * symbols for the user's default locale. 91 * See "<a href="../util/Locale.html#default_locale">Be wary of the default locale</a>". 94 this(Locale.getDefault()); 99 * symbols for the specified locale [all...] |
| /ndk/sources/android/support/src/locale/ |
| duplocale.c | 29 #include <locale.h>
|
| uselocale.c | 28 #include <locale.h>
|
| /ndk/sources/android/support/src/musl-locale/ |
| strftime_l.c | 1 #include <locale.h>
|