Home
last modified time | relevance | path

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

/third_party/python/Lib/email/
D_parseaddr.py169 tzsign = -1
172 tzsign = 1
173 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60)
/third_party/skia/third_party/externals/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()
/third_party/python/Lib/
Ddatetime.py348 tzsign = -1 if tstr[tz_pos - 1] == '-' else 1
353 tzi = timezone(tzsign * td)
/third_party/python/Modules/
D_datetimemodule.c830 int tzsign = (*tzinfo_pos == '-') ? -1 : 1; in parse_isoformat_time() local
836 *tzoffset = tzsign * ((tzhour * 3600) + (tzminute * 60) + tzsecond); in parse_isoformat_time()
837 *tzmicrosecond *= tzsign; in parse_isoformat_time()