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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 122 tzoffset = None
125 tzoffset = _timezones[tz]
128 tzoffset = int(tz)
132 if tzoffset:
133 if tzoffset < 0:
135 tzoffset = -tzoffset
138 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 122 tzoffset = None
125 tzoffset = _timezones[tz]
128 tzoffset = int(tz)
132 if tzoffset:
133 if tzoffset < 0:
135 tzoffset = -tzoffset
138 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rfc822.py 915 tzoffset = None
918 tzoffset = _timezones[tz]
921 tzoffset = int(tz)
925 if tzoffset:
926 if tzoffset < 0:
928 tzoffset = -tzoffset
931 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rfc822.py 915 tzoffset = None
918 tzoffset = _timezones[tz]
921 tzoffset = int(tz)
925 if tzoffset:
926 if tzoffset < 0:
928 tzoffset = -tzoffset
931 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60
    [all...]
  /external/chromium_org/third_party/icu/source/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/cintltst/
putiltst.c 192 int32_t tzoffset = uprv_timezone(); local
193 log_verbose("Value returned from uprv_timezone = %d\n", tzoffset);
194 if (tzoffset != 28800) {
197 if ((tzoffset % 1800 != 0)) {
198 log_info("Note: t_timezone offset of %ld (for %s : %s) is not a multiple of 30min.", tzoffset, uprv_tzname(0), uprv_tzname(1));
200 /*tzoffset=uprv_getUTCtime();*/
  /external/chromium_org/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) {
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...]
  /external/icu4c/test/intltest/
tztest.cpp 117 int32_t tzoffset = uprv_timezone(); local
118 logln(UnicodeString("Value returned from uprv_timezone = ") + tzoffset);
120 if (tzoffset < 0)
121 tzoffset = -tzoffset;
122 if ((*saveDefault == *pstZone) && (tzoffset != 28800)) {
126 if ((tzoffset % 900) != 0) {
134 infoln("WARNING: t_timezone may be incorrect. It is not a multiple of 15min.", tzoffset);
    [all...]
caltest.cpp 333 int32_t tzoffset = 123400; local
335 SimpleTimeZone *zone = new SimpleTimeZone(tzoffset, tzid);
395 z->getRawOffset() != tzoffset)
    [all...]
  /external/icu4c/i18n/
timezone.cpp 873 int32_t tzoffset = z->getRawOffset(); local
876 if (tzoffset != *rawOffset) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email.py     [all...]
test_email_renamed.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/
test_email.py     [all...]
test_email_renamed.py     [all...]

Completed in 566 milliseconds