Home | History | Annotate | Download | only in shadows

Lines Matching defs:gmtoff

68     time.gmtoff = other.gmtoff;
78 public static int getJulianDay(long millis, long gmtoff) {
79 long offsetMillis = gmtoff * 1000;
95 int approximateDay = getJulianDay(millis, time.gmtoff);
138 time.gmtoff = 0;
161 time.gmtoff = 0;
173 long gmtoff = TimeZone.getTimeZone(timezone).getOffset(date);
174 set(date + gmtoff);
176 time.gmtoff = (gmtoff / 1000);
245 String sign = (time.gmtoff < 0) ? "-" : "+";
246 int offset = (int) Math.abs(time.gmtoff);