Home
last modified time | relevance | path

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

/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DLocaleNameTest.java36 StringBuffer icuid = new StringBuffer(); in TestLanguageNames() local
49 icuid.setLength(0); in TestLanguageNames()
50 icuid.append(forLocale.getLanguage()); in TestLanguageNames()
54 icuid.append("_"); in TestLanguageNames()
55 icuid.append(country); in TestLanguageNames()
59 icuid.append("_"); in TestLanguageNames()
61 icuid.append("_"); in TestLanguageNames()
62 icuid.append(variant); in TestLanguageNames()
64 ULocale forULocale = new ULocale(icuid.toString()); in TestLanguageNames()
/external/icu/icu4c/source/i18n/
Dwintzimpl.cpp116 static UBool getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t le… in getWindowsTimeZoneInfo() argument
118 UnicodeString id = UnicodeString(icuid, length); in getWindowsTimeZoneInfo()
148 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length) in uprv_getWindowsTimeZoneInfo() argument
150 if (getWindowsTimeZoneInfo(zoneInfo, icuid, length)) { in uprv_getWindowsTimeZoneInfo()
Dwindtfmt.cpp293 UnicodeString icuid; in setTimeZoneInfo() local
295 zone.getID(icuid); in setTimeZoneInfo()
296 if (! uprv_getWindowsTimeZoneInfo(tzi, icuid.getBuffer(), icuid.length())) { in setTimeZoneInfo()
298 int32_t ec = TimeZone::countEquivalentIDs(icuid); in setTimeZoneInfo()
301 UnicodeString equiv = TimeZone::getEquivalentID(icuid, z); in setTimeZoneInfo()
Dwintzimpl.h32 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length);
/external/icu/icu4c/source/common/
Dwintz.c276 char* icuid = NULL; in uprv_detectWindowsTimeZone() local
427 icuid = (char*)uprv_calloc(len + 1, sizeof(char)); in uprv_detectWindowsTimeZone()
428 if (icuid != NULL) { in uprv_detectWindowsTimeZone()
429 uprv_strcpy(icuid, tmpid); in uprv_detectWindowsTimeZone()
435 return icuid; in uprv_detectWindowsTimeZone()