Home
last modified time | relevance | path

Searched refs:tzone (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4c/source/test/compat/
Dtzone.pl36 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";
Dreadme.txt4 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.pl
33 tzone.pl year month day
/external/toybox/toys/other/
Dhwclock.c61 struct timezone tzone; in hwclock_main() local
116 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()
/external/nist-sip/java/gov/nist/javax/sip/parser/
DDateParser.java68 String tzone = this.lexer.ttoken().toLowerCase(); in parse() local
69 if (!"gmt".equals(tzone)) in parse()
70 throw createParseException("Bad Time Zone " + tzone); in parse()
/external/cldr/tools/java/org/unicode/cldr/tool/
DMisc.java294 TimeZone tzone = TimeZone.getTimeZone(zone); in printAllZoneLocalizations() local
295 int stdOffset = tzone.getRawOffset(); in printAllZoneLocalizations()
351 TimeZone tzone = TimeZone.getTimeZone(zone); in printAllZoneLocalizations() local
352 out.println("<td>" + offsetString(tzone) + "</td>"); in printAllZoneLocalizations()
378 private static String offsetString(TimeZone tzone) { in offsetString() argument
380 int janOffset = tzone.getOffset(JAN152006); in offsetString()
381 int juneOffset = tzone.getOffset(JUNE152006); in offsetString()