HomeSort by relevance Sort by last modified time
    Searched defs:localeID (Results 1 - 10 of 10) sorted by null

  /external/icu4c/test/intltest/
winutil.h 32 char *localeID;
winutil.cpp 38 const char* localeID = NULL;
55 localeID = uprv_convertToPosix(lcidRecords[lcidCount].lcid, &status);
57 lcidRecords[lcidCount].localeID = new char[strlen(localeID)];
59 strcpy(lcidRecords[lcidCount].localeID, localeID);
84 delete lcidRecords[i].localeID;
windttst.cpp 116 // NULL localeID means ICU didn't recognize this locale
117 if (lcidRecords[i].localeID == NULL) {
125 char localeID[64];
127 uprv_strcpy(localeID, lcidRecords[i].localeID);
128 uprv_strcat(localeID, getCalendarType(calType));
131 Locale ulocale(localeID);
137 if (uprv_strchr(localeID, '@') > 0) {
138 uprv_strcat(localeID, ";");
140 uprv_strcat(localeID, "@")
    [all...]
winnmtst.cpp 229 static void testLocale(const char *localeID, int32_t lcid, NumberFormat *wnf, UBool currency, TestLog *log)
246 UnicodeString locale(localeID);
254 UnicodeString locale(localeID);
262 UnicodeString locale(localeID);
277 char localeID[128];
279 // NULL localeID means ICU didn't recognize the lcid
280 if (lcidRecords[i].localeID == NULL) {
284 strcpy(localeID, lcidRecords[i].localeID);
286 if (strchr(localeID, '@') > 0)
    [all...]
loctest.cpp     [all...]
numfmtst.cpp 741 const char *localeID = testCases[i][0];
746 uloc_canonicalize(localeID, loc, 256, &status);
749 errln("Could not create currency formatter for locale %s",localeID);
756 + UnicodeString( " for locale: ")+ UnicodeString(localeID) );
    [all...]
  /external/icu4c/tools/toolutil/
pkgitems.cpp 263 char localeID[32];
264 if(length>=(int32_t)sizeof(localeID)) {
270 u_UCharsToChars(alias, localeID, length);
271 localeID[length]=0;
273 checkIDSuffix(itemName, localeID, -1, (useResSuffix ? ".res" : ""), check, context, pErrorCode);
  /external/icu4c/common/
locid.cpp 71 U_CFUNC int32_t locale_getKeywords(const char *localeID,
512 Locale& Locale::init(const char* localeID, UBool canonicalize)
538 if(localeID == NULL) {
549 uloc_canonicalize(localeID, fullName, sizeof(fullNameBuffer), &err) :
550 uloc_getName(localeID, fullName, sizeof(fullNameBuffer), &err);
561 uloc_canonicalize(localeID, fullName, length+1, &err) :
562 uloc_getName(localeID, fullName, length+1, &err);
692 const char *localeID = newLocale.getName();
693 locale_set_default_internal(localeID);
730 * Return the LCID value as specified in the "LocaleID" resource for thi
    [all...]
  /external/icu4c/tools/genrb/
wrtxml.cpp 176 char* localeID = (char*) uprv_malloc(idLen);
190 uprv_memcpy(localeID, id, pos);
191 localeID[pos]=0; /* NUL terminate the string */
195 canonLen = uloc_canonicalize(localeID, canon, canonCapacity, &status);
198 fprintf(stderr, "Could not canonicalize the locale ID: %s. Error: %s\n", localeID, u_errorName(status));
    [all...]
  /external/icu4c/test/cintltst/
cloctst.c     [all...]

Completed in 1159 milliseconds