HomeSort by relevance Sort by last modified time
    Searched refs:Timestamp (Results 1 - 25 of 31) sorted by null

1 2

  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
TimestampTest.java 25 import java.sql.Timestamp;
32 @TestTargetClass(Timestamp.class)
34 * JUnit Testcase for the java.sql.Timestamp class
40 static class MockTimestamp extends Timestamp{
137 method = "Timestamp",
141 Timestamp theTimestamp = new Timestamp(TIME_TEST1);
143 // The Timestamp should have been created
146 Timestamp mockTimestamp = new MockTimestamp(TIME_TEST1);
156 method = "Timestamp",
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 30 import java.security.Timestamp;
37 @TestTargetClass(Timestamp.class)
39 * Tests for <code>Timestamp</code> class fields and methods
53 method = "Timestamp",
58 new Timestamp(null, cpath);
64 new Timestamp(now, null);
70 Timestamp timestamp = new Timestamp(now, cpath); local
71 assertEquals("not expected value", now, timestamp.getTimestamp())
    [all...]
CodeSignerTest.java 31 import java.security.Timestamp;
47 private Timestamp ts = new Timestamp(now, cpath);
56 args = {java.security.cert.CertPath.class, java.security.Timestamp.class}
68 * timestamp can be null
72 notes = "Null parameter timestamp checking",
74 args = {java.security.cert.CertPath.class, java.security.Timestamp.class}
92 args = {java.security.cert.CertPath.class, java.security.Timestamp.class}
CodeSource2Test.java 28 import java.security.Timestamp;
87 Timestamp ts = new Timestamp(now, cpath);
  /libcore/luni/src/main/java/java/security/
Timestamp.java 25 * {@code Timestamp} represents a signed time stamp. {@code Timestamp} is
28 public final class Timestamp implements Serializable {
32 private Date timestamp; field in class:Timestamp
40 * Constructs a new instance of {@code Timestamp} with the specified {@code
41 * timestamp} and the given certificate path.
43 * @param timestamp
48 * if {@code timestamp} is {@code null} or if {@code
51 public Timestamp(Date timestamp, CertPath signerCertPath)
    [all...]
CodeSigner.java 32 private Timestamp timestamp; field in class:CodeSigner
42 * @param timestamp
48 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) {
53 this.timestamp = timestamp;
78 return timestamp == null ? that.timestamp == null : timestamp
    [all...]
  /libcore/luni/src/main/java/java/sql/
Timestamp.java 26 * A Java representation of the SQL {@code TIMESTAMP} type. It provides the
27 * capability of representing the SQL {@code TIMESTAMP} nanosecond value, in
30 * The {@code Timestamp} class consists of a regular date/time value, where only
34 * The addition of the nanosecond value field to the {@code Timestamp} object
36 * it extends. Users should be aware that {@code Timestamp} objects are not
44 public class Timestamp extends Date {
48 // The nanoseconds time value of the Timestamp
55 * Returns a {@code Timestamp} corresponding to the time specified by the
59 * @deprecated Use the constructor {@link #Timestamp(long)}.
73 * which defines the nanosecond value of the timestamp specifie
    [all...]
CallableStatement.java 682 * Returns the indexed parameter's {@code TIMESTAMP} value as a {@code
683 * java.sql.Timestamp}.
688 * @return the parameter's value as a {@code java.sql.Timestamp}. A
693 * @see Timestamp
695 public Timestamp getTimestamp(int parameterIndex) throws SQLException;
698 * Returns the indexed parameter's {@code TIMESTAMP} value as a {@code
699 * java.sql.Timestamp}. The JDBC driver uses the supplied {@code Calendar}
706 * used for creating the returned {@code Timestamp}
707 * @return the parameter's value as a {@code java.sql.Timestamp}. A
712 * @see Timestamp
    [all...]
SQLInput.java 177 * java.sql.Timestamp}.
179 * @return the attribute as a {@code java.sql.Timestamp}. {@code null} if
183 * @see Timestamp
185 public Timestamp readTimestamp() throws SQLException;
SQLOutput.java 166 * Write a {@code java.sql.Timestamp} value into the output stream.
169 * the {@code Timestamp} value to write.
172 * @see Timestamp
174 public void writeTimestamp(Timestamp theTimestamp) throws SQLException;
ResultSet.java     [all...]
PreparedStatement.java 615 * Sets the value of a specified parameter to a supplied java.sql.Timestamp
622 * the java.sql.Timestamp value to which the parameter at {@code
627 public void setTimestamp(int parameterIndex, Timestamp theTimestamp)
632 * java.sql.Timestamp} value, using the supplied {@code Calendar}.
635 * TIMESTAMP} value, which allows it to use a custom timezone - otherwise
642 * the {@code java.sql.Timestamp} value to which the parameter at
646 * TIMESTAMP} value
649 * @see Timestamp
652 public void setTimestamp(int parameterIndex, Timestamp theTimestamp,
    [all...]
  /libcore/luni/src/test/java/tests/sql/
ResultSetGetterTests.java 38 import java.sql.Timestamp;
144 java.sql.Timestamp.class, // Types.TIMESTAMP,
176 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
    [all...]
SQLOutputTest.java 38 import java.sql.Timestamp;
202 * {@link java.sql.SQLOutput#writeTimestamp(java.sql.Timestamp)}.
208 args = {Timestamp.class}
CallableStatementTest.java 32 import java.sql.Timestamp;
1019 * Test method for {@link java.sql.CallableStatement#setTimestamp(java.lang.String, java.sql.Timestamp)}.
1025 args = {String.class, Timestamp.class}
1032 * Test method for {@link java.sql.CallableStatement#setTimestamp(java.lang.String, java.sql.Timestamp, java.util.Calendar)}.
1038 args = {String.class, Timestamp.class, Calendar.class}
PreparedStatementTest.java 45 import java.sql.Timestamp;
71 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
    [all...]
ResultSetNotSupportedTests.java     [all...]
  /libcore/luni/src/main/java/javax/sql/
RowSet.java 35 import java.sql.Timestamp;
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 37 import java.sql.Timestamp;
227 public void setTimestamp(int parameterIndex, Timestamp theTimestamp,
231 public void setTimestamp(int parameterIndex, Timestamp theTimestamp)
505 public Timestamp getTimestamp(int columnIndex, Calendar cal)
510 public Timestamp getTimestamp(int columnIndex) throws SQLException {
514 public Timestamp getTimestamp(String columnName, Calendar cal)
519 public Timestamp getTimestamp(String columnName) throws SQLException {
754 public void updateTimestamp(int columnIndex, Timestamp x)
758 public void updateTimestamp(String columnName, Timestamp x)
1251 public void setTimestamp(String parameterName, Timestamp theTimestamp
    [all...]
  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCPreparedStatement.java 264 public void setTimestamp(int parameterIndex, java.sql.Timestamp x)
477 public void setTimestamp(int parameterIndex, java.sql.Timestamp x,
582 public void setTimestamp(String parameterName, java.sql.Timestamp val)
633 public void setTimestamp(String parameterName, java.sql.Timestamp val,
688 public java.sql.Timestamp getTimestamp(String parameterName)
767 public java.sql.Timestamp getTimestamp(String parameterName, Calendar cal)
772 public java.sql.Timestamp getTimestamp(int parameterIndex, Calendar cal)
JDBCResultSet.java 352 public java.sql.Timestamp getTimestamp(int columnIndex)
357 private java.sql.Timestamp internalGetTimestamp(int columnIndex,
368 return new java.sql.Timestamp(SQLite.Database.long_from_julian(lastg));
370 return java.sql.Timestamp.valueOf(lastg);
374 return java.sql.Timestamp.valueOf(lastg);
376 return new java.sql.Timestamp(SQLite.Database.long_from_julian(lastg));
385 public java.sql.Timestamp getTimestamp(String columnName)
391 public java.sql.Timestamp getTimestamp(int columnIndex,
397 public java.sql.Timestamp getTimestamp(String columnName,
1108 public void updateTimestamp(int colIndex, java.sql.Timestamp t
    [all...]
  /libcore/luni/src/test/java/tests/javax/sql/
RowSetTest.java 19 import java.sql.Timestamp;
579 args = {int.class, java.sql.Timestamp.class}
589 args = {int.class, java.sql.Timestamp.class, java.util.Calendar.class}
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ralink.h 309 UCHAR Timestamp[8];
driver_ndis.c 184 UCHAR Timestamp[8];
832 r->tsf = WPA_GET_LE64(fixed->Timestamp);
    [all...]
  /external/libvpx/examples/includes/geshi/geshi/
rails.php 227 'ActiveRecord::Schema', 'ActiveRecord::Timestamp',

Completed in 655 milliseconds

1 2