Lines Matching refs:zone

54     // Datetime formats (era and zone handled separately).
74 * The date/time string format must include a time zone, either a Z to indicate Coordinated
97 // In a few cases, the time zone may be +/-hh:30.
131 * If no argument is given or the argument date/time specifies a time zone, then the date string
132 * format must include a time zone, either a Z to indicate Coordinated Universal Time or a + or -
134 * is specified and it does not specify a time zone, then the date string format must not include
135 * a time zone.
143 String zone = edz[2];
144 if (datetime == null || zone == null)
158 return (leader + dateOut + zone);
169 String zone = datetime.substring(getZoneStart(datetime));
170 return (date + zone);
189 * If no argument is given or the argument date/time specifies a time zone, then the time string
190 * format must include a time zone, either a Z to indicate Coordinated Universal Time or a + or -
192 * is specified and it does not specify a time zone, then the time string format must not include
193 * a time zone.
200 String zone = edz[2];
201 if (time == null || zone == null)
210 return (out + zone);
221 // The datetime() function returns the zone on the datetime string. If we
222 // append it, we get the zone substring duplicated.
225 // String zone = datetime.substring(getZoneStart(datetime));
226 // return (time + zone);
791 * may contain: - (for BC era), datetime, and zone. If the zone is not
798 String zone = "";
807 zone = datetime.substring(z);
811 zone = null;
812 //System.out.println("'" + leader + "' " + datetime + " " + zone);
813 return new String[]{leader, datetime, zone};
817 * Get the start of zone information if the input ends
818 * with 'Z' or +/-hh:mm. If a zone string is not
819 * found, return -1; if the zone string is invalid,
845 return -1; // No zone information.
964 String zone;
972 zone = "z";
989 zone = "z";
998 zone = "";
1000 // time if time zone is not included.
1002 String[] formats = {dt + zone, d, gym, gy};
1009 SimpleDateFormat inFormat = new SimpleDateFormat(t + zone);