Searched defs:utc (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DDate.java377 * redundantly-for example, <tt>GMT-5</tt> or <tt>utc+0430</tt>.
623 "gmt", "ut", "utc", "est", "edt", "cst", "cdt",
1281 private static final BaseCalendar getCalendarSystem(long utc) { argument
1282 // Quickly check if the time stamp given by `utc' is the Epoch
1285 if (utc >= 0
1286 || utc >= GregorianCalendar.DEFAULT_GREGORIAN_CUTOVER
1287 - TimeZone.getDefaultRef().getOffset(utc)) {
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfo.java247 public int getOffsets(long utc, int[] offsets) { argument
248 return getOffsets(utc, offsets, UTC_TIME);
478 long utc = System.currentTimeMillis() - rawOffsetDiff;
479 int index = getTransitionIndex(utc, UTC_TIME);
508 long utc = date.getTime() - rawOffsetDiff;
509 int index = getTransitionIndex(utc, UTC_TIME);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java107 if (date1.utc == date2.utc) {
114 if (date1.utc == 'Z') {
121 tempDate.utc = '+';
133 tempDate.utc = '-';
141 } else if (date2.utc == 'Z') {
148 tempDate.utc = '-';
167 tempDate.utc = '+';
233 if (date1.utc < date2.utc) {
934 int year, month, day, hour, minute, utc; field in class:AbstractDateTimeDV.DateTimeData
959 DateTimeData(int year, int month, int day, int hour, int minute, double second, int utc, String originalValue, boolean normalized, AbstractDateTimeDV type) argument
[all...]

Completed in 47 milliseconds