Searched refs:tzone (Results 1 – 6 of 6) sorted by relevance
36 foreach my $tzone (@TZONE_RAW) {37 chomp($tzone);38 if (-e $tzone) {39 $TZONE[$index] = substr($tzone, 20);50 foreach my $tzone (@TZONE) {52 $ENV{'TZ'} = "$tzone"; 58 print "\nTIME ZONE: $tzone\n";
4 tzone.pl : A perl script that test the timezone information between the system time and ICU time.10 tzone.pl Perl script that calls the tzdate program with the correct TZ and arguments.30 tzone.pl33 tzone.pl year month day
36 struct timezone tzone; local71 tzone.tz_minuteswest = timezone / 60 - 60 * daylight;75 tzone.tz_minuteswest = timezone / 60;76 if (tm.tm_isdst) tzone.tz_minuteswest -= 60;77 if (!utc) timeval.tv_sec += tzone.tz_minuteswest * 60;83 tzone.tz_dsttime = 0;84 if (settimeofday(&timeval, &tzone)) perror_exit("settimeofday failed");
68 String tzone = this.lexer.ttoken().toLowerCase(); in parse() local69 if (!"gmt".equals(tzone)) in parse()70 throw createParseException("Bad Time Zone " + tzone); in parse()
429 long tzone, dst; in conv_stamp() local454 tzone = tz.tz_minuteswest * 60L; in conv_stamp()464 tzone = (long) timezone; in conv_stamp()467 tzone = 0; in conv_stamp()471 accum += tzone; in conv_stamp()
294 TimeZone tzone = TimeZone.getTimeZone(zone); in printAllZoneLocalizations() local295 int stdOffset = tzone.getRawOffset(); in printAllZoneLocalizations()351 TimeZone tzone = TimeZone.getTimeZone(zone); in printAllZoneLocalizations() local352 out.println("<td>" + offsetString(tzone) + "</td>"); in printAllZoneLocalizations()378 private static String offsetString(TimeZone tzone) { in offsetString() argument380 int janOffset = tzone.getOffset(JAN152006); in offsetString()381 int juneOffset = tzone.getOffset(JUNE152006); in offsetString()