Home | History | Annotate | Download | only in tzcode

Lines Matching refs:rawoffset

136     int64_t rawoffset; // raw seconds offset from GMT
148 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {}
152 return rawoffset == other.rawoffset &&
403 type.rawoffset = readcoded(file);
428 // Initial type's rawoffset is same with the rawoffset after the
430 int64_t rawoffset0 = (info.types.at(info.transitions.at(0).type)).rawoffset;
433 if (info.types.at(i).rawoffset == rawoffset0
1098 os << typ->rawoffset << ", " << typ->dstoffset;
1206 int64_t rawoffset;
1208 SimplifiedZoneType() : rawoffset(-1), dstoffset(-1) {}
1209 SimplifiedZoneType(const ZoneType& t) : rawoffset(t.rawoffset),
1212 return rawoffset < t.rawoffset ||
1213 (rawoffset == t.rawoffset &&
1226 rawoffset(t.rawoffset), dstoffset(t.dstoffset),