Home | History | Annotate | Download | only in jni

Lines Matching refs:timeZone

25 import java.util.TimeZone;
213 /** Export a date to a clearsilver tree using a specified timezone */
214 public void exportDate(String hdfname, TimeZone timeZone, Date date) {
219 Calendar cal = Calendar.getInstance(timeZone);
252 boolean tzNegative = timeZone.getRawOffset() < 0;
253 int tzAbsolute = java.lang.Math.abs(timeZone.getRawOffset()/1000);
262 /** Export a date to a clearsilver tree using a specified timezone */
268 TimeZone timeZone = TimeZone.getTimeZone(tz);
270 if (timeZone == null) {
271 throw new RuntimeException("Unknown timezone: " + tz);
276 exportDate(hdfname, timeZone, date);