Searched defs:icuid (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dwintzimpl.cpp118 static UBool getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length) { argument
120 UnicodeString id = UnicodeString(icuid, length);
146 * Given the timezone icuid, fill in zoneInfo by calling auxillary functions that creates a timezone and extract the
150 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length) argument
152 if (getWindowsTimeZoneInfo(zoneInfo, icuid, length)) {
H A Dwindtfmt.cpp289 UnicodeString icuid; local
291 zone.getID(icuid);
292 if (! uprv_getWindowsTimeZoneInfo(tzi, icuid.getBuffer(), icuid.length())) {
294 int32_t ec = TimeZone::countEquivalentIDs(icuid);
297 UnicodeString equiv = TimeZone::getEquivalentID(icuid, z);
/external/icu/icu4c/source/common/
H A Dwintz.c278 char* icuid = NULL; local
426 * Copy the timezone ID to icuid to be returned.
430 icuid = (char*)uprv_calloc(len + 1, sizeof(char));
431 if (icuid != NULL) {
432 uprv_strcpy(icuid, tmpid);
438 return icuid;

Completed in 93 milliseconds