Home | History | Annotate | Download | only in format

Lines Matching defs:gmtoff

134     public long gmtoff;
214 * to April 1. It also fills in weekDay, yearDay, isDst and gmtoff.
314 this.gmtoff = 0;
390 * <code>yearDay</code>, and <code>gmtoff</code> are always set to zero,
489 gmtoff = 0;
677 this.gmtoff = 0;
795 this.gmtoff = that.gmtoff;
799 * Sets the fields. Sets weekDay, yearDay and gmtoff to 0, and isDst to -1.
813 this.gmtoff = 0;
818 * Sets weekDay, yearDay and gmtoff to 0, and isDst to -1.
836 this.gmtoff = 0;
930 String sign = (gmtoff < 0) ? "-" : "+";
931 int offset = (int) Math.abs(gmtoff);
963 * {@link #gmtoff}).
970 * @param gmtoff the offset from UTC in seconds
973 public static int getJulianDay(long millis, long gmtoff) {
974 long offsetMillis = gmtoff * 1000;
981 * the same timezone that is set in this Time object. The "gmtoff" field
1008 int approximateDay = getJulianDay(millis, gmtoff);
1267 time.gmtoff = wallTime.getGmtOffset();
1280 wallTime.setGmtOffset((int) time.gmtoff);