Home | History | Annotate | Download | only in cookie

Lines Matching defs:formats

47  * 3.3.1 as well as some other common non-standard formats.
89 * Parses a date value. The formats used for parsing the date value are retrieved from
97 * supported date formats
104 * Parses the date value using the given date formats.
107 * @param dateFormats the date formats to use
119 * Parses the date value using the given date formats.
122 * @param dateFormats the date formats to use
172 * Formats the given date according to the RFC 1123 pattern.
184 * Formats the given date according to the specified pattern. The pattern
242 Map<String, SimpleDateFormat> formats = ref.get();
243 if (formats == null) {
244 formats = new HashMap<String, SimpleDateFormat>();
246 new SoftReference<Map<String, SimpleDateFormat>>(formats));
249 SimpleDateFormat format = formats.get(pattern);
253 formats.put(pattern, format);