Lines Matching full:zoneid
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 */
76 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec) {
77 TimeZone* zone = _createTimeZone(zoneID, -1, ec);
84 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec) {
86 TimeZone* zone = _createTimeZone(zoneID, -1, ec);
123 ucal_open( const UChar* zoneID,
132 TimeZone* zone = (zoneID==NULL) ? TimeZone::createDefault()
133 : _createTimeZone(zoneID, len, status);
179 const UChar* zoneID,
187 TimeZone* zone = (zoneID==NULL) ? TimeZone::createDefault()
188 : _createTimeZone(zoneID, len, status);