HomeSort by relevance Sort by last modified time
    Searched full:locale (Results 226 - 250 of 2270) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/i18n/unicode/
dcfmtsym.h 46 * DecimalFormatSymbols from its locale data. If you need to change any
144 * Create a DecimalFormatSymbols object for the given locale.
146 * @param locale The locale to get symbols for.
151 DecimalFormatSymbols(const Locale& locale, UErrorCode& status);
154 * Create a DecimalFormatSymbols object for the default locale.
229 * Returns the locale for which this object was constructed.
232 inline Locale getLocale() const;
235 * Returns the locale for this object. Two flavors are available
365 Locale locale; member in class:DecimalFormatSymbols
    [all...]
  /external/chromium/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);
cloctst.h 19 /*C API TEST FOR LOCALE */
27 * Use Locale to access Resource file data and compare against expected values
31 * Use Locale to access Resource file display names and compare against expected values
103 * test locale aliases
  /external/chromium/third_party/icu/source/test/intltest/
aliastst.h 27 Locale defLocale;
trcoll.h 8 * CollationTurkishTest is a third level test class. This tests the locale
32 // perform tests for turkish locale with strength PRIMARY
35 // perform tests for turkish locale with strength TERTIARY
tsnmfmt.h 52 void testLocale(/* char *par, */const Locale& locale, const UnicodeString& localeName);
56 Locale fLocale;
  /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);
cloctst.h 19 /*C API TEST FOR LOCALE */
27 * Use Locale to access Resource file data and compare against expected values
31 * Use Locale to access Resource file display names and compare against expected values
105 * test locale aliases
  /external/icu4c/test/intltest/
aliastst.h 27 Locale defLocale;
  /frameworks/base/tools/localize/
Configuration.cpp 9 n = locale.compare(that.locale);
40 if (locale.length() > 0) {
44 s += locale;
  /libcore/luni/src/main/java/libcore/icu/
NativePluralRules.java 19 import java.util.Locale;
49 public static NativePluralRules forLocale(Locale locale) {
50 return new NativePluralRules(forLocaleImpl(locale.toString()));
  /libcore/luni/src/main/native/
NativePluralRules.cpp 34 Locale locale = Locale::createFromName(ScopedUtfChars(env, localeName).c_str()); local
36 PluralRules* result = PluralRules::forLocale(locale, status);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockParser.java 20 import java.util.Locale;
64 public void setLocale(Locale locale) throws SAXException {
65 logger.add("setLocale", locale);
  /bionic/libc/stdlib/
locale.c 28 #include <locale.h>
30 char* setlocale (int category, char const *locale)
32 /* INTENTIONAL: there is no locale support in Bionic */
  /external/chromium/third_party/icu/public/i18n/unicode/
umsg.h 202 * Format a message for a locale.
204 * locale. For all numeric arguments, double is assumed unless the type is
206 * @param locale The locale for which the message will be formatted
220 u_formatMessage(const char *locale,
229 * Format a message for a locale.
231 * locale. For all numeric arguments, double is assumed unless the type is
233 * @param locale The locale for which the message will be formatted
247 u_vformatMessage( const char *locale,
    [all...]
  /external/chromium/third_party/icu/source/common/
ubrk.cpp 27 // and locale.
32 const char *locale,
45 result = BreakIterator::createCharacterInstance(Locale(locale), *status);
49 result = BreakIterator::createWordInstance(Locale(locale), *status);
53 result = BreakIterator::createLineInstance(Locale(locale), *status);
57 result = BreakIterator::createSentenceInstance(Locale(locale), *status)
    [all...]
  /external/chromium/third_party/icu/source/i18n/
currfmt.cpp 20 CurrencyFormat::CurrencyFormat(const Locale& locale, UErrorCode& ec) :
23 fmt = NumberFormat::createCurrencyInstance(locale, ec);
currfmt.h 41 * Construct a CurrencyFormat for the given locale.
43 CurrencyFormat(const Locale& locale, UErrorCode& ec);
  /external/chromium/third_party/icu/source/test/testdata/
root.txt 9 // This is a test default locale file
97 rootAliasClient:alias {"/LOCALE/rootAliasDestination"}
99 nestedRootAliasClient:alias {"/LOCALE/rootAliasTable/destination"}
  /external/elfutils/m4/
lcmessage.m4 21 # Check whether LC_MESSAGES is available in <locale.h>.
26 [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
30 [Define if your <locale.h> file defines LC_MESSAGES.])
  /external/icu4c/common/
locdispnames.cpp 16 * Code for locale display names, separated out from other .cpp files
39 Locale::getDisplayLanguage(UnicodeString& dispLang) const
51 Locale::getDisplayLanguage(const Locale &displayLocale,
85 Locale::getDisplayScript(UnicodeString& dispScript) const
91 Locale::getDisplayScript(const Locale &displayLocale,
125 Locale::getDisplayCountry(UnicodeString& dispCntry) const
131 Locale::getDisplayCountry(const Locale &displayLocale
    [all...]
locresdata.cpp 16 * Code for miscellaneous locale-related resource bundle data access,
31 * Regular resource bundle lookups perform fallback to parent locale bundles
37 * Note: Only the opening of entire bundles falls back through the default locale
39 * default locale because that would result in a mix of languages that is
43 uloc_getTableStringWithFallback(const char *path, const char *locale,
56 * open the bundle for the current locale
57 * this falls back through the locale's chain to root
60 rb=ures_open(path, locale, &errorCode);
132 if(uprv_strcmp(explicitFallbackName, locale)==0){
147 /* done with the locale string - ready to close table and rb *
    [all...]
ubrk.cpp 27 // and locale.
32 const char *locale,
45 result = BreakIterator::createCharacterInstance(Locale(locale), *status);
49 result = BreakIterator::createWordInstance(Locale(locale), *status);
53 result = BreakIterator::createLineInstance(Locale(locale), *status);
57 result = BreakIterator::createSentenceInstance(Locale(locale), *status)
    [all...]
  /external/icu4c/i18n/
currfmt.cpp 20 CurrencyFormat::CurrencyFormat(const Locale& locale, UErrorCode& ec) :
23 fmt = NumberFormat::createCurrencyInstance(locale, ec);

Completed in 1724 milliseconds

1 2 3 4 5 6 7 8 91011>>