Home
last modified time | relevance | path

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

/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleAliasTest.java167 String newCountry = newLoc.getDisplayCountry(available[j]); in TestDisplayName() local
172 if(!newCountry.equals(newLoc.getCountry())){ in TestDisplayName()
173 if(!oldCountry.equals(newCountry)){ in TestDisplayName()
174 …dLoc +" oldCountry= "+ prettify(oldCountry) +" newCountry = "+prettify(newCountry)+ " in display l… in TestDisplayName()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DLocaleAliasTest.java171 String newCountry = newLoc.getDisplayCountry(available[j]); in TestDisplayName() local
176 if(!newCountry.equals(newLoc.getCountry())){ in TestDisplayName()
177 if(!oldCountry.equals(newCountry)){ in TestDisplayName()
178 …dLoc +" oldCountry= "+ prettify(oldCountry) +" newCountry = "+prettify(newCountry)+ " in display l… in TestDisplayName()
/external/icu/icu4c/source/test/intltest/
Daliastst.cpp220 const UnicodeString newCountry = newLoc.getDisplayCountry(dipLocName); in TestDisplayName() local
225 if(newCountry != newLoc.getCountry()){ in TestDisplayName()
226 if(oldCountry!=newCountry){ in TestDisplayName()
227 …e()) +" oldCountry= "+ prettify(oldCountry) +" newCountry = "+prettify(newCountry)+ " in display l… in TestDisplayName()
/external/icu/icu4c/source/common/
Dlocid.cpp275 const char * newCountry, in Locale() argument
280 if( (newLanguage==NULL) && (newCountry == NULL) && (newVariant == NULL) ) in Locale()
304 if ( newCountry != NULL ) in Locale()
306 csize = (int32_t)uprv_strlen(newCountry); in Locale()
378 uprv_strcpy(p, newCountry); in Locale()
/external/icu/icu4c/source/test/cintltst/
Dcloctst.c3122 UChar newCountry[256] = {'\0'}; in TestDisplayName() local
3140 … int32_t newCountryLen = uloc_getDisplayCountry(newLoc, dispLoc, newCountry, capacity, &status); in TestDisplayName()
3148 if(u_strncmp(oldCountry,newCountry,oldCountryLen)!=0){ in TestDisplayName()