HomeSort by relevance Sort by last modified time
    Searched refs:tzoffset (Results 1 - 7 of 7) sorted by null

  /external/clearsilver/cgi/
date.c 37 * prefix.tzoffset - hhmm from UTC
48 int tzoffset = 0; local
99 tzoffset = tzoffset_seconds / 60;
100 if (tzoffset < 0)
102 tzoffset *= -1;
105 snprintf(buf, sizeof(buf), "%c%02d%02d", tzsign, tzoffset / 60, tzoffset % 60);
106 err = hdf_set_value (obj, "tzoffset", buf);
  /external/chromium/third_party/icu/source/test/cintltst/
putiltst.c 170 int32_t tzoffset = uprv_timezone(); local
171 log_verbose("Value returned from uprv_timezone = %d\n", tzoffset);
172 if (tzoffset != 28800) {
175 if ((tzoffset % 1800 != 0)) {
178 /*tzoffset=uprv_getUTCtime();*/
  /external/icu4c/test/cintltst/
putiltst.c 172 int32_t tzoffset = uprv_timezone(); local
173 log_verbose("Value returned from uprv_timezone = %d\n", tzoffset);
174 if (tzoffset != 28800) {
177 if ((tzoffset % 1800 != 0)) {
180 /*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) {
124 infoln("[WARNING] FAIL: t_timezone may be incorrect. It is not a multiple of 15min. It is %d (Note: This is a known issue on MacOSX)", tzoffset);
126 errln("FAIL: t_timezone may be incorrect. It is not a multiple of 15min. It is %d", tzoffset);
    [all...]
caltest.cpp 283 int32_t tzoffset = 123400; local
285 SimpleTimeZone *zone = new SimpleTimeZone(tzoffset, tzid);
345 z->getRawOffset() != tzoffset)
    [all...]
  /external/chromium/third_party/icu/source/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) {
118 errln("FAIL: t_timezone may be incorrect. It is not a multiple of 15min. It is %d", tzoffset);
    [all...]
caltest.cpp 275 int32_t tzoffset = 123400; local
277 SimpleTimeZone *zone = new SimpleTimeZone(tzoffset, tzid);
335 z->getRawOffset() != tzoffset)
    [all...]

Completed in 207 milliseconds