Lines Matching refs:rawoffset
137 int64_t rawoffset; // raw seconds offset from GMT member
149 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {} in ZoneType()
153 return rawoffset == other.rawoffset && in matches()
404 type.rawoffset = readcoded(file); in readzoneinfo()
431 int64_t rawoffset0 = (info.types.at(info.transitions.at(0).type)).rawoffset; in readzoneinfo()
434 if (info.types.at(i).rawoffset == rawoffset0 in readzoneinfo()
1095 os << typ->rawoffset << ", " << typ->dstoffset; in print()
1203 int64_t rawoffset; member
1205 SimplifiedZoneType() : rawoffset(-1), dstoffset(-1) {} in SimplifiedZoneType()
1206 SimplifiedZoneType(const ZoneType& t) : rawoffset(t.rawoffset), in SimplifiedZoneType()
1209 return rawoffset < t.rawoffset || in operator <()
1210 (rawoffset == t.rawoffset && in operator <()
1223 rawoffset(t.rawoffset), dstoffset(t.dstoffset), in ZoneType()