Home
last modified time | relevance | path

Searched refs:localeStr (Results 1 – 6 of 6) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/icu/
DLDMLComparator.java127 private String localeStr; field in LDMLComparator
225 localeStr = goldFileName.substring(goldFileName.lastIndexOf(File.separatorChar) + 1, in processArgs()
228 String fileName = destFolder + File.separator + localeStr + ".html"; in processArgs()
252 printHTML(writer, localeStr); in processArgs()
254 ULocale ourLocale = new ULocale(localeStr); in processArgs()
256 + ourLocale.getDisplayCountry() + "_" + localeStr + ".idx"; in processArgs()
261 localeStr + in processArgs()
263 indexwriter.println(" <td><a href=\"" + localeStr + ".html" + "\">" + in processArgs()
378 int index = localeStr.indexOf("_"); in printTableHeader()
381 parent = localeStr.substring(0, index); in printTableHeader()
[all …]
/external/jackson-annotations/src/main/java/com/fasterxml/jackson/annotation/
DJsonFormat.java472 public Value(String p, Shape sh, String localeStr, String tzStr, Features f, in Value() argument
476 … (localeStr == null || localeStr.length() == 0 || DEFAULT_LOCALE.equals(localeStr)) ? in Value()
477 null : new Locale(localeStr), in Value()
519 public Value(String p, Shape sh, String localeStr, String tzStr, Features f) { in Value() argument
520 this(p, sh, localeStr, tzStr, f, null); in Value()
/external/icu/icu4c/source/test/intltest/
Dnumberformattesttuple.cpp121 CharString localeStr; in strToLocale() local
122 localeStr.appendInvariantChars(str, status); in strToLocale()
123 *static_cast<Locale *>(localePtr) = Locale(localeStr.data()); in strToLocale()
Ddtfmttst.cpp3893 const char * localeStr; member
3929 for (itemPtr = items; itemPtr->localeStr != NULL; itemPtr++ ) { in TestNumberAsStringParsing()
3930 Locale locale = Locale::createFromName(itemPtr->localeStr); in TestNumberAsStringParsing()
3943 …n("FAIL, err when expected success: Locale \"" + UnicodeString(itemPtr->localeStr) + "\", lenient … in TestNumberAsStringParsing()
3947 …n("FAIL, expected err but got none: Locale \"" + UnicodeString(itemPtr->localeStr) + "\", lenient … in TestNumberAsStringParsing()
3953 …L, mismatch formatting parsed date: Locale \"" + UnicodeString(itemPtr->localeStr) + "\", lenient … in TestNumberAsStringParsing()
/external/icu/icu4c/source/test/cintltst/
Dcldrtest.c203 … const UChar *localeStr = ures_getStringByIndex(subBundle,idx,&localeStrLen,&errorCode); in TestKeyInRootRecursive() local
204 if (rootStr && localeStr && U_SUCCESS(errorCode)) { in TestKeyInRootRecursive()
205 if (u_strcmp(rootStr, localeStr) != 0) { in TestKeyInRootRecursive()
233 localeStr = ures_getStringByIndex(arr,0,&localeStrLen,&errorCode); in TestKeyInRootRecursive()
252 if (localeStr[0] == (UChar)0x20) { in TestKeyInRootRecursive()
259 …else if ((localeStr[localeStrLen - 1] == (UChar)0x20) && (strcmp(subBundleKey,"separator") != 0)) { in TestKeyInRootRecursive()
270 const UChar *localeStrItr = localeStr; in TestKeyInRootRecursive()
314 && u_charDigitValue(localeStr[0]) != 0) in TestKeyInRootRecursive()
/external/icu/icu4c/source/i18n/
Drbnf.cpp1071 UChar* localeStr = localeName.getBuffer(len + 1); in getRuleSetDisplayName() local
1073 localeStr[len] = 0; in getRuleSetDisplayName()
1074 int32_t ix = localizations->indexForLocale(localeStr); in getRuleSetDisplayName()
1081 do { --len;} while (len > 0 && localeStr[len] != 0x005f); // underscore in getRuleSetDisplayName()
1082 while (len > 0 && localeStr[len-1] == 0x005F) --len; in getRuleSetDisplayName()