Searched refs:GMT (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DTimeZone.java83 * <code>GMT</code> <i>Sign</i> <i>Hours</i> <code>:</code> <i>Minutes</i>
84 * <code>GMT</code> <i>Sign</i> <i>Hours</i> <i>Minutes</i>
85 * <code>GMT</code> <i>Sign</i> <i>Hours</i>
98 * between 00 to 59. For example, "GMT+10" and "GMT+0010" mean ten
99 * hours and ten minutes ahead of GMT, respectively.
104 * the specified string doesn't match the syntax, <code>"GMT"</code>
111 * <code>GMT</code> <i>Sign</i> <i>TwoDigitHours</i> <code>:</code> <i>Minutes</i>
121 * For example, TimeZone.getTimeZone("GMT-8").getID() returns "GMT
170 private static final TimeZone GMT = new SimpleTimeZone(0, "GMT"); field in class:TimeZone
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DHttpCookie.java136 "EEE',' dd-MMM-yyyy HH:mm:ss 'GMT'",
137 "EEE',' dd MMM yyyy HH:mm:ss 'GMT'",
138 "EEE MMM dd yyyy HH:mm:ss 'GMT'Z",
139 "EEE',' dd-MMM-yy HH:mm:ss 'GMT'",
140 "EEE',' dd MMM yy HH:mm:ss 'GMT'",
141 "EEE MMM dd yy HH:mm:ss 'GMT'Z"
1158 static final TimeZone GMT = TimeZone.getTimeZone("GMT"); field in class:HttpCookie
1168 Calendar cal = new GregorianCalendar(GMT);
1173 df.setTimeZone(GMT);
[all...]
/libcore/ojluni/src/main/java/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 104 milliseconds