Searched refs:Date (Results 126 - 150 of 294) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/util/
H A DTimer.java27 import java.util.Date;
207 public void schedule(TimerTask task, Date time) {
284 public void schedule(TimerTask task, Date firstTime, long period) {
366 public void scheduleAtFixedRate(TimerTask task, Date firstTime,
378 * in Date.getTime() format. This method checks timer state, task state,
H A DTimeZone.java212 if (inDaylightTime(new Date(date))) {
237 if (inDaylightTime(new Date(date))) {
484 * @see #inDaylightTime(Date)
508 * @see #inDaylightTime(Date)
519 * {@code useDaylightTime()} or {@code inDaylightTime(new Date())}
528 * @see #inDaylightTime(Date)
532 return useDaylightTime() || inDaylightTime(new Date());
539 * @param date the given Date.
543 abstract public boolean inDaylightTime(Date date);
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DLogFilter.java54 String s = df.format (new Date());
/openjdk7/jdk/test/java/net/DatagramSocket/SetDatagramSocketImplFactory/
H A DADatagramSocket.java90 dString = new Date().toString();
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DTestAllSuites.java150 Date start = new Date();
228 Date end = new Date();
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBasicChecker.java30 import java.util.Date;
65 private final Date testDate;
81 BasicChecker(TrustAnchor anchor, Date testDate, String sigProvider,
176 private void verifyTimestamp(X509Certificate cert, Date date)
/openjdk7/jdk/src/share/demo/applets/Clock/
H A DClock.java47 import java.util.Date;
66 private Date currentDate; // Used to get date to display
76 currentDate = new Date();
112 currentDate = new Date();
/openjdk7/jdk/test/javax/swing/JScrollBar/4865918/
H A Dbug4865918.java109 (new Date()).getTime(),
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerInputBuffer.java32 import java.util.Date;
244 public Date getUTCTime(int len) throws IOException {
259 public Date getGeneralizedTime(int len) throws IOException {
276 private Date getTime(int len, boolean generalized) throws IOException {
431 return new Date(time);
H A DDerOutputStream.java32 import java.util.Date;
466 public void putUTCTime(Date d) throws IOException {
476 public void putGeneralizedTime(Date d) throws IOException {
487 private void putTime(Date d, byte tag) throws IOException {
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLEntryImpl.java76 private Date revocationDate = null;
89 * @param date the Date on which revocation took place.
91 public X509CRLEntryImpl(BigInteger num, Date date) {
102 * @param date the Date on which revocation took place.
105 public X509CRLEntryImpl(BigInteger num, Date date,
233 public Date getRevocationDate() {
234 return new Date(revocationDate.getTime());
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DGenDoc.java36 import java.util.Date;
190 out.write(header1 + new Date() + header3 + zonename + header4);
421 out1.write(header1 + new Date() + header2 + Main.getVersionName() +
447 out1.write(header1 + new Date() + header2 + Main.getVersionName() +
469 out2.write(header1 + new Date() + header3 + regionKey +
518 out1.write(header1 + new Date() + header2 + Main.getVersionName() +
570 out1.write(header1 + new Date() + header2 + Main.getVersionName() +
605 out1.write(header1 + new Date() + header2 + Main.getVersionName() +
651 out1.write(header1 + new Date() + header2 + Main.getVersionName() +
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CertSelector.java102 private Date certificateValid;
103 private Date privateKeyValid;
455 * Note that the <code>Date</code> supplied here is cloned to protect
458 * @param certValid the <code>Date</code> to check (or <code>null</code>)
461 public void setCertificateValid(Date certValid) {
465 certificateValid = (Date)certValid.clone();
475 * Note that the <code>Date</code> supplied here is cloned to protect
478 * @param privateKeyValid the <code>Date</code> to check (or
482 public void setPrivateKeyValid(Date privateKeyValid) {
486 this.privateKeyValid = (Date)privateKeyVali
[all...]
/openjdk7/jdk/src/share/classes/java/sql/
H A DCallableStatement.java318 * <code>java.sql.Date</code> object.
328 java.sql.Date getDate(int parameterIndex) throws SQLException;
500 * <code>java.sql.Date</code> object, using
520 java.sql.Date getDate(int parameterIndex, Calendar cal)
973 * Sets the designated parameter to the given <code>java.sql.Date</code> value
989 void setDate(String parameterName, java.sql.Date x)
1224 * Sets the designated parameter to the given <code>java.sql.Date</code> value,
1245 void setDate(String parameterName, java.sql.Date x, Calendar cal)
1489 * <code>java.sql.Date</code> object.
1501 java.sql.Date getDat
[all...]
H A DPreparedStatement.java253 * Sets the designated parameter to the given <code>java.sql.Date</code> value
265 void setDate(int parameterIndex, java.sql.Date x)
614 * Sets the designated parameter to the given <code>java.sql.Date</code> value,
632 void setDate(int parameterIndex, java.sql.Date x, Calendar cal)
H A DTime.java29 * <P>A thin wrapper around the <code>java.util.Date</code> class that allows the JDBC
37 public class Time extends java.util.Date {
144 // Override all the date operations inherited from java.util.Date;
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpURLConnection.java31 import java.util.Date;
544 return Date.parse(dateString);
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DFileTime.java30 import java.util.Date;
277 cal.setGregorianChange(new Date(Long.MIN_VALUE));
/openjdk7/jdk/src/share/classes/javax/management/
H A DNotification.java188 this.timeStamp = (new java.util.Date()).getTime() ;
206 this.timeStamp = (new java.util.Date()).getTime() ;
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DClient.java30 import java.util.Date;
171 byte[] time = BigInteger.valueOf(new Date().getTime())
/openjdk7/jdk/src/share/classes/sun/util/logging/
H A DLoggingSupport.java32 import java.util.Date;
174 String.format(format, new Date(), "", "", "", "", "");
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/file/
H A DFileURLConnection.java132 Date date = new Date(lastModified);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXAWTFormatter.java38 Date dat = new Date();
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSet.java822 * to the given <code>java.sql.Date</code> value. The driver converts this to
830 void setDate(int parameterIndex, java.sql.Date x) throws SQLException;
1678 * with the given <code>java.sql.Date</code> value. The driver will convert this
1687 void setDate(int parameterIndex, java.sql.Date x, Calendar cal)
1691 * Sets the designated parameter to the given <code>java.sql.Date</code> value
1706 void setDate(String parameterName, java.sql.Date x)
1710 * Sets the designated parameter to the given <code>java.sql.Date</code> value,
1730 void setDate(String parameterName, java.sql.Date x, Calendar cal)
/openjdk7/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DCPValidatorTrustAnchor.java179 params.setDate(new Date(109, 9, 1)); // 2009-09-01

Completed in 117 milliseconds

1234567891011>>