Searched refs:tzone (Results 1 – 5 of 5) 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
61 struct timezone tzone; in hwclock_main() local116 tzone.tz_minuteswest = timezone / 60 - 60 * daylight; in hwclock_main()122 tzone.tz_minuteswest = timezone / 60; in hwclock_main()123 if (tm.tm_isdst) tzone.tz_minuteswest -= 60; in hwclock_main()124 if (!TT.utc) timeval.tv_sec += tzone.tz_minuteswest * 60; in hwclock_main()133 tzone.tz_dsttime = 0; in hwclock_main()134 if (settimeofday(&timeval, &tzone)) perror_exit("settimeofday failed"); in hwclock_main()
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()
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()