Lines Matching refs:rawoffset
136 int64_t rawoffset; // raw seconds offset from GMT member
148 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {} in ZoneType()
152 return rawoffset == other.rawoffset && in matches()
403 type.rawoffset = readcoded(file); in readzoneinfo()
430 int64_t rawoffset0 = (info.types.at(info.transitions.at(0).type)).rawoffset; in readzoneinfo()
433 if (info.types.at(i).rawoffset == rawoffset0 in readzoneinfo()
1098 os << typ->rawoffset << ", " << typ->dstoffset; in print()
1206 int64_t rawoffset; member
1208 SimplifiedZoneType() : rawoffset(-1), dstoffset(-1) {} in SimplifiedZoneType()
1209 SimplifiedZoneType(const ZoneType& t) : rawoffset(t.rawoffset), in SimplifiedZoneType()
1212 return rawoffset < t.rawoffset || in operator <()
1213 (rawoffset == t.rawoffset && in operator <()
1226 rawoffset(t.rawoffset), dstoffset(t.dstoffset), in ZoneType()