Lines Matching refs:gmtOffsetSeconds
217 formatDurationSeconds(type.gmtOffsetSeconds), in writeTransitions()
231 int gmtOffsetSeconds = mappedTzFile.getInt(); in readTypes() local
240 types.add(new Type(gmtOffsetSeconds, isDst)); in readTypes()
276 new Type(inputType.gmtOffsetSeconds, inputType.isDst, ttisstd, ttisgmt); in mergeTodInfo()
286 type.gmtOffsetSeconds, in writeTypes()
290 formatDurationSeconds(type.gmtOffsetSeconds), in writeTypes()
370 final int gmtOffsetSeconds; field in TzFileDumper.Type
375 Type(int gmtOffsetSeconds, byte isDst) { in Type() argument
376 this(gmtOffsetSeconds, isDst, null, null); in Type()
379 Type(int gmtOffsetSeconds, byte isDst, Byte ttisstd, Byte ttisgmt) { in Type() argument
380 this.gmtOffsetSeconds = gmtOffsetSeconds; in Type()