Searched refs:zoneID (Results 1 – 5 of 5) sorted by relevance
/external/icu4c/i18n/ |
D | ucal.cpp | 26 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) { in _createTimeZone() argument 32 int32_t l = (len<0 ? u_strlen(zoneID) : len); in _createTimeZone() 34 zoneStrID.setTo((UBool)(len < 0), zoneID, l); /* temporary read-only alias */ in _createTimeZone() 71 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec) { in ucal_setDefaultTimeZone() argument 72 TimeZone* zone = _createTimeZone(zoneID, -1, ec); in ucal_setDefaultTimeZone() 79 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec) { in ucal_getDSTSavings() argument 81 TimeZone* zone = _createTimeZone(zoneID, -1, ec); in ucal_getDSTSavings() 116 ucal_open( const UChar* zoneID, in ucal_open() argument 125 TimeZone* zone = (zoneID==NULL) ? TimeZone::createDefault() in ucal_open() 126 : _createTimeZone(zoneID, len, status); in ucal_open() [all …]
|
D | windtfmt.cpp | 281 UnicodeString zoneID; in setTimeZoneInfo() local 283 zone.getID(zoneID); in setTimeZoneInfo() 285 if (zoneID.compare(fZoneID) != 0) { in setTimeZoneInfo() 307 return zoneID; in setTimeZoneInfo()
|
/external/icu4c/test/intltest/ |
D | windttst.cpp | 75 UnicodeString zoneID; in testLocales() local 80 tz->getID(zoneID); in testLocales() 81 if (! uprv_getWindowsTimeZoneInfo(&tzi, zoneID.getBuffer(), zoneID.length())) { in testLocales() 83 int32_t ec = TimeZone::countEquivalentIDs(zoneID); in testLocales() 86 UnicodeString equiv = TimeZone::getEquivalentID(zoneID, z); in testLocales()
|
/external/icu4c/i18n/unicode/ |
D | ucal.h | 561 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec); 580 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec); 604 ucal_open(const UChar* zoneID, 630 const UChar* zoneID,
|
/external/icu4c/test/cintltst/ |
D | cintltst.c | 597 UChar zoneID[CTEST_MAX_TIMEZONE_SIZE]; in ctest_setTimeZone() local 613 u_uastrncpy(zoneID, optionalTimeZone, CTEST_MAX_TIMEZONE_SIZE-1); in ctest_setTimeZone() 614 zoneID[CTEST_MAX_TIMEZONE_SIZE-1] = 0; in ctest_setTimeZone() 615 ucal_setDefaultTimeZone(zoneID, status); in ctest_setTimeZone()
|