Home | History | Annotate | Download | only in xmp

Lines Matching defs:cal

113 		Calendar cal = dateTime.getCalendar();
114 cal.setTimeZone(TimeZone.getDefault());
115 return new XMPDateTimeImpl(cal);
131 GregorianCalendar cal = new GregorianCalendar(UTC);
132 cal.setGregorianChange(new Date(Long.MIN_VALUE));
133 cal.setTimeInMillis(timeInMillis);
134 return new XMPDateTimeImpl(cal);
149 GregorianCalendar cal = new GregorianCalendar();
150 cal.setTimeInMillis(timeInMillis);
151 return new XMPDateTimeImpl(cal);