Home
last modified time | relevance | path

Searched refs:tzsign (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/email/
D_parseaddr.py134 tzsign = -1
137 tzsign = 1
138 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60)
/external/python/cpython3/Lib/email/
D_parseaddr.py165 tzsign = -1
168 tzsign = 1
169 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60)
/external/python/cpython2/Lib/
Drfc822.py932 tzsign = -1
935 tzsign = 1
936 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60)
/external/dng_sdk/source/
Ddng_date_time.cpp549 int tzsign = (time [6] == '-') ? -1 : 1; in Decode_IPTC_Time() local
572 zone.SetOffsetMinutes (tzsign * (tzhour * 60 + tzmin)); in Decode_IPTC_Time()
/external/python/cpython3/Lib/
Ddatetime.py343 tzsign = -1 if tstr[tz_pos - 1] == '-' else 1
348 tzi = timezone(tzsign * td)
/external/python/cpython3/Modules/
D_datetimemodule.c822 int tzsign = (*tzinfo_pos == '-') ? -1 : 1; in parse_isoformat_time() local
828 *tzoffset = tzsign * ((tzhour * 3600) + (tzminute * 60) + tzsecond); in parse_isoformat_time()
829 *tzmicrosecond *= tzsign; in parse_isoformat_time()