Home | History | Annotate | Download | only in tzcode

Lines Matching refs:dstoffset

136     int64_t dstoffset; // dst seconds offset from GMT
147 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {}
152 dstoffset == other.dstoffset;
403 type.dstoffset = readcoded(file);
410 if (type.isdst != (type.dstoffset != 0)) {
411 throw invalid_argument("isdst does not reflect dstoffset");
426 if (info.types.at(0).dstoffset != 0) {
433 && info.types.at(i).dstoffset == 0) {
1065 os << typ->rawoffset << ", " << typ->dstoffset;
1154 int64_t dstoffset;
1155 SimplifiedZoneType() : rawoffset(-1), dstoffset(-1) {}
1157 dstoffset(t.dstoffset) {}
1161 dstoffset < t.dstoffset);
1173 rawoffset(t.rawoffset), dstoffset(t.dstoffset),