Home
last modified time | relevance | path

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

/third_party/python/Lib/email/
H A D_parseaddr.py173 tzsign = -1
176 tzsign = 1
177 tzoffset = tzsign * ( (tzoffset//100)*3600 + (tzoffset % 100)*60)
/third_party/skia/third_party/externals/dng_sdk/source/
H A 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/
H A Ddatetime.py447 tzsign = -1 if tstr[tz_pos - 1] == '-' else 1
452 tzi = timezone(tzsign * td)
/third_party/python/Modules/
H A D_datetimemodule.c927 int tzsign = (*tzinfo_pos == '-') ? -1 : 1; in parse_isoformat_time() local
933 *tzoffset = tzsign * ((tzhour * 3600) + (tzminute * 60) + tzsecond); in parse_isoformat_time()
934 *tzmicrosecond *= tzsign; in parse_isoformat_time()

Completed in 14 milliseconds