Lines Matching refs:date
24 import java.util.Date;
213 /** Export a date to a clearsilver tree using a specified timezone */
214 public void exportDate(String hdfname, TimeZone timeZone, Date date) {
220 cal.setTime(date);
262 /** Export a date to a clearsilver tree using a specified timezone */
274 Date date = new Date((long)tt * 1000);
276 exportDate(hdfname, timeZone, date);