Searched defs:GMT (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/net/HttpCookie/
H A DExpiredCookieTest.java37 "EEE',' dd-MMM-yy HH:mm:ss 'GMT'",
38 "EEE',' dd MMM yy HH:mm:ss 'GMT'",
39 "EEE MMM dd yy HH:mm:ss 'GMT'Z",
40 "EEE',' dd-MMM-yyyy HH:mm:ss 'GMT'",
41 "EEE',' dd MMM yyyy HH:mm:ss 'GMT'",
42 "EEE MMM dd yyyy HH:mm:ss 'GMT'Z"
44 static final TimeZone GMT = TimeZone.getTimeZone("GMT"); field in class:ExpiredCookieTest
47 Calendar cal = Calendar.getInstance(GMT);
53 df.setTimeZone(GMT);
[all...]
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DZoneInfoFile.java67 * /GMT
195 * s4 value; // raw GMT offset [millisecond]
235 * u1 value; // 1: if the GMT raw offset will change
305 * s4 value[length/4]; // raw GMT offset in milliseconds
353 * The list of zone IDs whose zones will change their GMT offsets
357 * <em>current</em> GMT offsets.
420 * Raw GMT offset will change in the future.
450 * Raw GMT offsets table data item tag.
455 * Indices to the raw GMT offset table data item tag.
475 private static final ZoneInfo GMT field in class:ZoneInfoFile
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java139 * TimeZone for GMT.
141 private static final TimeZone GMT = TimeZone.getTimeZone("GMT"); field in class:DurationImpl
388 GregorianCalendar gregorianCalendar = new GregorianCalendar(GMT);
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpCookie.java108 "EEE',' dd-MMM-yyyy HH:mm:ss 'GMT'",
109 "EEE',' dd MMM yyyy HH:mm:ss 'GMT'",
110 "EEE MMM dd yyyy HH:mm:ss 'GMT'Z",
111 "EEE',' dd-MMM-yy HH:mm:ss 'GMT'",
112 "EEE',' dd MMM yy HH:mm:ss 'GMT'",
113 "EEE MMM dd yy HH:mm:ss 'GMT'Z"
1123 static final TimeZone GMT = TimeZone.getTimeZone("GMT"); field in class:HttpCookie
1133 Calendar cal = new GregorianCalendar(GMT);
1138 df.setTimeZone(GMT);
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DSimpleDateFormat.java202 * <td><code>Pacific Standard Time</code>; <code>PST</code>; <code>GMT-08:00</code>
276 * names. For time zones representing a GMT offset value, the
280 * <code>GMT</code> <i>Sign</i> <i>Hours</i> <code>:</code> <i>Minutes</i>
328 * <p>For formatting, if the offset value from GMT is 0, {@code "Z"} is
331 * {@code "GMT+05:30"}, {@code "+05"} is produced.
500 // For time zones that have no names, use strings GMT+minutes and
501 // GMT-minutes. For instance, in France the time zone is GMT+60.
502 private static final String GMT = "GMT"; field in class:SimpleDateFormat
[all...]

Completed in 88 milliseconds