Home | History | Annotate | Download | only in tzcode

Lines Matching full:dstoffset

137     int64_t dstoffset; // dst seconds offset from GMT
148 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {}
153 dstoffset == other.dstoffset;
404 type.dstoffset = readcoded(file);
411 if (type.isdst != (type.dstoffset != 0)) {
412 throw invalid_argument("isdst does not reflect dstoffset");
427 if (info.types.at(0).dstoffset != 0) {
434 && info.types.at(i).dstoffset == 0) {
1098 os << typ->rawoffset << ", " << typ->dstoffset;
1207 int64_t dstoffset;
1208 SimplifiedZoneType() : rawoffset(-1), dstoffset(-1) {}
1210 dstoffset(t.dstoffset) {}
1214 dstoffset < t.dstoffset);
1226 rawoffset(t.rawoffset), dstoffset(t.dstoffset),
1295 if (i->dstoffset == 0) {