Home | History | Annotate | Download | only in i18n

Lines Matching refs:zone

39 vzone_close(VZone* zone) {
40 delete (VTimeZone*)zone;
44 vzone_clone(const VZone *zone) {
45 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone());
54 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) {
56 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s);
65 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) {
67 ((VTimeZone*)zone)->VTimeZone::setTZURL(s);
71 vzone_getLastModified(VZone* zone, UDate& lastModified) {
72 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified);
76 vzone_setLastModified(VZone* zone, UDate lastModified) {
77 return ((VTimeZone*)zone)->VTimeZone::setLastModified(lastModified);
81 vzone_write(VZone* zone, UChar* & result, int32_t & resultLength, UErrorCode& status) {
83 ((VTimeZone*)zone)->VTimeZone::write(s, status);
93 vzone_writeFromStart(VZone* zone, UDate start, UChar* & result, int32_t & resultLength, UErrorCode& status) {
95 ((VTimeZone*)zone)->VTimeZone::write(start, s, status);
105 vzone_writeSimple(VZone* zone, UDate time, UChar* & result, int32_t & resultLength, UErrorCode& status) {
107 ((VTimeZone*)zone)->VTimeZone::writeSimple(time, s, status);
117 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
119 return ((VTimeZone*)zone)->VTimeZone::getOffset(era, year, month, day, dayOfWeek, millis, status);
123 vzone_getOffset2(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
126 return ((VTimeZone*)zone)->VTimeZone::getOffset(era, year, month, day, dayOfWeek, millis, monthLength, status);
130 vzone_getOffset3(VZone* zone, UDate date, UBool local, int32_t& rawOffset,
132 return ((VTimeZone*)zone)->VTimeZone::getOffset(date, local, rawOffset, dstOffset, ec);
136 vzone_setRawOffset(VZone* zone, int32_t offsetMillis) {
137 return ((VTimeZone*)zone)->VTimeZone::setRawOffset(offsetMillis);
141 vzone_getRawOffset(VZone* zone) {
142 return ((VTimeZone*)zone)->VTimeZone::getRawOffset();
146 vzone_useDaylightTime(VZone* zone) {
147 return ((VTimeZone*)zone)->VTimeZone::useDaylightTime();
151 vzone_inDaylightTime(VZone* zone, UDate date, UErrorCode& status) {
152 return ((VTimeZone*)zone)->VTimeZone::inDaylightTime(date, status);
156 vzone_hasSameRules(VZone* zone, const VZone* other) {
157 return ((VTimeZone*)zone)->VTimeZone::hasSameRules(*(VTimeZone*)other);
161 vzone_getNextTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result) {
162 return ((VTimeZone*)zone)->VTimeZone::getNextTransition(base, inclusive, *(TimeZoneTransition*)result);
166 vzone_getPreviousTransition(VZone* zone, UDate base, UBool inclusive, ZTrans* result) {
167 return ((VTimeZone*)zone)->VTimeZone::getPreviousTransition(base, inclusive, *(TimeZoneTransition*)result);
171 vzone_countTransitionRules(VZone* zone, UErrorCode& status) {
172 return ((VTimeZone*)zone)->VTimeZone::countTransitionRules(status);
176 vzone_getStaticClassID(VZone* zone) {
177 return ((VTimeZone*)zone)->VTimeZone::getStaticClassID();
181 vzone_getDynamicClassID(VZone* zone) {
182 return ((VTimeZone*)zone)->VTimeZone::getDynamicClassID();