OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tzone
(Results
1 - 4
of
4
) sorted by null
/external/icu/icu4c/source/test/compat/
tzone.pl
10
print "Usage:
tzone
[year month day hour minute]\n";
17
my @
TZONE
;
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
";
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
DateParser.java
68
String
tzone
= this.lexer.ttoken().toLowerCase();
local
69
if (!"gmt".equals(
tzone
))
70
throw createParseException("Bad Time Zone " +
tzone
);
/external/toybox/toys/other/
hwclock.c
61
struct timezone
tzone
;
local
116
tzone
.tz_minuteswest = timezone / 60 - 60 * daylight;
122
tzone
.tz_minuteswest = timezone / 60;
123
if (tm.tm_isdst)
tzone
.tz_minuteswest -= 60;
124
if (!TT.utc) timeval.tv_sec +=
tzone
.tz_minuteswest * 60;
133
tzone
.tz_dsttime = 0;
134
if (settimeofday(&timeval, &
tzone
)) perror_exit("settimeofday failed");
/external/cldr/tools/java/org/unicode/cldr/tool/
Misc.java
294
TimeZone
tzone
= TimeZone.getTimeZone(zone);
local
295
int stdOffset =
tzone
.getRawOffset();
351
TimeZone
tzone
= TimeZone.getTimeZone(zone);
local
352
out.println("<td>" + offsetString(
tzone
) + "</td>");
375
* @param
tzone
378
private static String offsetString(TimeZone
tzone
) {
380
int janOffset =
tzone
.getOffset(JAN152006);
381
int juneOffset =
tzone
.getOffset(JUNE152006);
[
all
...]
Completed in 1113 milliseconds