Searched refs:zoneID (Results 1 – 5 of 5) sorted by relevance
/external/icu4c/test/intltest/ |
D | windttst.cpp | 75 UnicodeString zoneID; in testLocales() local 79 tz->getID(zoneID); in testLocales() 80 if (! uprv_getWindowsTimeZoneInfo(&tzi, zoneID.getBuffer(), zoneID.length())) { in testLocales() 82 int32_t ec = TimeZone::countEquivalentIDs(zoneID); in testLocales() 85 UnicodeString equiv = TimeZone::getEquivalentID(zoneID, z); in testLocales()
|
/external/icu4c/i18n/ |
D | ucal.cpp | 31 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) { in _createTimeZone() argument 37 int32_t l = (len<0 ? u_strlen(zoneID) : len); in _createTimeZone() 39 zoneStrID.setTo((UBool)(len < 0), zoneID, l); /* temporary read-only alias */ in _createTimeZone() 83 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec) { in ucal_setDefaultTimeZone() argument 84 TimeZone* zone = _createTimeZone(zoneID, -1, ec); in ucal_setDefaultTimeZone() 91 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec) { in ucal_getDSTSavings() argument 93 TimeZone* zone = _createTimeZone(zoneID, -1, ec); in ucal_getDSTSavings() 130 ucal_open( const UChar* zoneID, in ucal_open() argument 139 TimeZone* zone = (zoneID==NULL) ? TimeZone::createDefault() in ucal_open() 140 : _createTimeZone(zoneID, len, status); in ucal_open() [all …]
|
D | windtfmt.cpp | 287 UnicodeString zoneID; in setTimeZoneInfo() local 289 zone.getID(zoneID); in setTimeZoneInfo() 291 if (zoneID.compare(fZoneID) != 0) { in setTimeZoneInfo() 313 return zoneID; in setTimeZoneInfo()
|
/external/icu4c/i18n/unicode/ |
D | ucal.h | 633 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec); 652 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec); 687 ucal_open(const UChar* zoneID, 744 const UChar* zoneID,
|
/external/icu4c/test/cintltst/ |
D | cintltst.c | 572 UChar zoneID[CTEST_MAX_TIMEZONE_SIZE]; in ctest_setTimeZone() local 588 u_uastrncpy(zoneID, optionalTimeZone, CTEST_MAX_TIMEZONE_SIZE-1); in ctest_setTimeZone() 589 zoneID[CTEST_MAX_TIMEZONE_SIZE-1] = 0; in ctest_setTimeZone() 590 ucal_setDefaultTimeZone(zoneID, status); in ctest_setTimeZone()
|