Home
last modified time | relevance | path

Searched refs:newCountry (Results 1 – 7 of 7) sorted by relevance

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DLocaleAliasTest.java183 String newCountry = newLoc.getDisplayCountry(available[j]); in TestDisplayName() local
188 if(!newCountry.equals(newLoc.getCountry())){ in TestDisplayName()
189 if(!oldCountry.equals(newCountry)){ in TestDisplayName()
190 …dLoc +" oldCountry= "+ prettify(oldCountry) +" newCountry = "+prettify(newCountry)+ " in display l… in TestDisplayName()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleAliasTest.java180 String newCountry = newLoc.getDisplayCountry(available[j]); in TestDisplayName() local
185 if(!newCountry.equals(newLoc.getCountry())){ in TestDisplayName()
186 if(!oldCountry.equals(newCountry)){ in TestDisplayName()
187 …dLoc +" oldCountry= "+ prettify(oldCountry) +" newCountry = "+prettify(newCountry)+ " in display l… in TestDisplayName()
/external/icu/icu4c/source/test/intltest/
Daliastst.cpp222 const UnicodeString newCountry = newLoc.getDisplayCountry(dipLocName); in TestDisplayName() local
227 if(newCountry != newLoc.getCountry()){ in TestDisplayName()
228 if(oldCountry!=newCountry){ in TestDisplayName()
229 …e()) +" oldCountry= "+ prettify(oldCountry) +" newCountry = "+prettify(newCountry)+ " in display l… in TestDisplayName()
/external/cldr/tools/java/org/unicode/cldr/tool/
DShowZoneEquivalences.java193 String newCountry = country; in getZoneEquivalences() local
196 newCountry = "<a target='map' href='" + mapLink + "'>" + country in getZoneEquivalences()
205 out.println(tabber.process(newCountry + "\t" + "<b>" + category + "</b>" in getZoneEquivalences()
DCountItems.java541 String newCountry = newName.split("/")[0]; in writeZonePrettyPath() local
542 if (!newCountry.equals(lastCountry)) { in writeZonePrettyPath()
543 Log.println("# " + newCountry + "\t" in writeZonePrettyPath()
544 + english.getName("territory", newCountry)); in writeZonePrettyPath()
545 lastCountry = newCountry; in writeZonePrettyPath()
/external/icu/icu4c/source/common/
Dlocid.cpp290 const char * newCountry, in Locale() argument
295 if( (newLanguage==NULL) && (newCountry == NULL) && (newVariant == NULL) ) in Locale()
324 if ( newCountry != NULL ) in Locale()
326 csize = (int32_t)uprv_strlen(newCountry); in Locale()
392 togo.append(newCountry, status); in Locale()
/external/icu/icu4c/source/test/cintltst/
Dcloctst.c3294 UChar newCountry[256] = {'\0'}; in TestDisplayName() local
3312 … int32_t newCountryLen = uloc_getDisplayCountry(newLoc, dispLoc, newCountry, capacity, &status); in TestDisplayName()
3320 if(u_strncmp(oldCountry,newCountry,oldCountryLen)!=0){ in TestDisplayName()