Searched refs:dateFormat (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/lib/
H A DExsltDatetime.java83 SimpleDateFormat dateFormat = new SimpleDateFormat(dt);
85 StringBuffer buff = new StringBuffer(dateFormat.format(datetime));
152 SimpleDateFormat dateFormat = new SimpleDateFormat(formatOut);
153 dateFormat.setLenient(false);
154 String dateOut = dateFormat.format(date);
208 SimpleDateFormat dateFormat = new SimpleDateFormat(formatOut);
209 String out = dateFormat.format(date);
833 SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm");
834 dateFormat.setLenient(false);
835 Date d = dateFormat
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DExchangeImpl.java58 private static final ThreadLocal<DateFormat> dateFormat = field in class:ExchangeImpl
212 rspHdrs.set ("Date", dateFormat.get().format (new Date()));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableUI.java749 private Object dateFormat; field in class:SynthTableUI.SynthTableCellRenderer
815 if (dateFormat == null) {
816 dateFormat = DateFormat.getDateInstance();
819 setText((value == null) ? "" : ((Format)dateFormat).format(value));
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/
H A DXMLHTMLReporter.java93 private static final SimpleDateFormat dateFormat = field in class:XMLHTMLReporter
225 dateFormat.format(new Date(srsh.getStartTime())) +
229 dateFormat.format(new Date(srsh.getEndTime())) +
H A DHTMLSeriesReporter.java84 private static final SimpleDateFormat dateFormat = field in class:HTMLSeriesReporter
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DOptions.java907 SimpleDateFormat dateFormat = new SimpleDateFormat(format, Locale.ENGLISH);
911 dateFormat.format(new Date()));
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java384 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
386 + "CONTENT=\"" + dateFormat.format(new Date()) + "\">");
435 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
436 Content meta = HtmlTree.META("date", dateFormat.format(new Date()));
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java1774 for (SimpleDateFormat dateFormat : dateFormats) {
1776 d = dateFormat.parse(s);

Completed in 57 milliseconds