Home
last modified time | relevance | path

Searched refs:tzone (Results 1 – 6 of 6) 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.c36 struct timezone tzone; local
71 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");
/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/mtools/
Dfile.c429 long tzone, dst; in conv_stamp() local
454 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()
/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()