HomeSort by relevance Sort by last modified time
    Searched refs:zoneID (Results 1 - 5 of 5) sorted by null

  /external/icu4c/test/intltest/
windttst.cpp 75 UnicodeString zoneID;
79 tz->getID(zoneID);
80 if (! uprv_getWindowsTimeZoneInfo(&tzi, zoneID.getBuffer(), zoneID.length())) {
82 int32_t ec = TimeZone::countEquivalentIDs(zoneID);
85 UnicodeString equiv = TimeZone::getEquivalentID(zoneID, z);
  /external/icu4c/i18n/
ucal.cpp 31 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) {
34 // Note that if zoneID is invalid, we get back GMT. This odd
37 int32_t l = (len<0 ? u_strlen(zoneID) : len);
39 zoneStrID.setTo((UBool)(len < 0), zoneID, l); /* temporary read-only alias */
83 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec) {
84 TimeZone* zone = _createTimeZone(zoneID, -1, ec);
91 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec) {
93 TimeZone* zone = _createTimeZone(zoneID, -1, ec);
130 ucal_open( const UChar* zoneID,
139 TimeZone* zone = (zoneID==NULL) ? TimeZone::createDefault(
    [all...]
windtfmt.cpp 287 UnicodeString zoneID;
289 zone.getID(zoneID);
291 if (zoneID.compare(fZoneID) != 0) {
313 return zoneID;
  /external/icu4c/i18n/unicode/
ucal.h 626 * @param zoneID null-terminated time zone ID
633 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec);
640 * @param zoneID null-terminated time zone ID
652 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec);
673 * @param zoneID The desired TimeZone ID. If 0, use the default time zone.
674 * @param len The length of zoneID, or -1 if null-terminated.
687 ucal_open(const UChar* zoneID,
737 * @param zoneID The desired TimeZone ID. If 0, use the default time zone.
738 * @param len The length of zoneID, or -1 if null-terminated.
744 const UChar* zoneID,
    [all...]
  /external/icu4c/test/cintltst/
cintltst.c 572 UChar zoneID[CTEST_MAX_TIMEZONE_SIZE];
588 u_uastrncpy(zoneID, optionalTimeZone, CTEST_MAX_TIMEZONE_SIZE-1);
589 zoneID[CTEST_MAX_TIMEZONE_SIZE-1] = 0;
590 ucal_setDefaultTimeZone(zoneID, status);

Completed in 140 milliseconds