Searched defs:zoneID (Results 1 - 4 of 4) sorted by relevance

/external/icu4c/test/intltest/
H A Dwindttst.cpp75 UnicodeString zoneID; local
80 tz->getID(zoneID);
81 if (! uprv_getWindowsTimeZoneInfo(&tzi, zoneID.getBuffer(), zoneID.length())) {
83 int32_t ec = TimeZone::countEquivalentIDs(zoneID);
86 UnicodeString equiv = TimeZone::getEquivalentID(zoneID, z);
/external/icu4c/i18n/
H A Dwindtfmt.cpp287 UnicodeString zoneID; local
289 zone.getID(zoneID);
291 if (zoneID.compare(fZoneID) != 0) {
313 return zoneID;
H A Ducal.cpp29 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) { argument
32 // Note that if zoneID is invalid, we get back GMT. This odd
35 int32_t l = (len<0 ? u_strlen(zoneID) : len);
37 zoneStrID.setTo((UBool)(len < 0), zoneID, l); /* temporary read-only alias */
74 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec) { argument
75 TimeZone* zone = _createTimeZone(zoneID, -1, ec);
82 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec) { argument
84 TimeZone* zone = _createTimeZone(zoneID, -1, ec);
120 ucal_open( const UChar* zoneID, argument
129 TimeZone* zone = (zoneID
172 ucal_setTimeZone( UCalendar* cal, const UChar* zoneID, int32_t len, UErrorCode *status) argument
[all...]
/external/icu4c/test/cintltst/
H A Dcintltst.c557 UChar zoneID[CTEST_MAX_TIMEZONE_SIZE]; local
573 u_uastrncpy(zoneID, optionalTimeZone, CTEST_MAX_TIMEZONE_SIZE-1);
574 zoneID[CTEST_MAX_TIMEZONE_SIZE-1] = 0;
575 ucal_setDefaultTimeZone(zoneID, status);

Completed in 57 milliseconds