OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tzoffset
(Results
1 - 3
of
3
) sorted by null
/external/icu4c/test/cintltst/
putiltst.c
175
int32_t
tzoffset
= uprv_timezone();
local
176
log_verbose("Value returned from uprv_timezone = %d\n",
tzoffset
);
177
if (
tzoffset
!= 28800) {
180
if ((
tzoffset
% 1800 != 0)) {
181
log_info("Note: t_timezone offset of %ld (for %s : %s) is not a multiple of 30min.",
tzoffset
, uprv_tzname(0), uprv_tzname(1));
183
/*
tzoffset
=uprv_getUTCtime();*/
/external/icu4c/test/intltest/
tztest.cpp
108
int32_t
tzoffset
= uprv_timezone();
local
109
logln(UnicodeString("Value returned from uprv_timezone = ") +
tzoffset
);
111
if (
tzoffset
< 0)
112
tzoffset
= -
tzoffset
;
113
if ((*saveDefault == *pstZone) && (
tzoffset
!= 28800)) {
117
if ((
tzoffset
% 900) != 0) {
125
infoln("WARNING: t_timezone may be incorrect. It is not a multiple of 15min.",
tzoffset
);
[
all
...]
caltest.cpp
283
int32_t
tzoffset
= 123400;
local
285
SimpleTimeZone *zone = new SimpleTimeZone(
tzoffset
, tzid);
345
z->getRawOffset() !=
tzoffset
)
[
all
...]
Completed in 75 milliseconds