Searched refs:getTimestamp (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DTimestampTest.java60 assertEquals("not expected value", now, timestamp.getTimestamp());
88 assertEquals(now, t.getTimestamp());
89 assertNotSame(now, t.getTimestamp());
H A DCodeSignerTest.java115 assertNull(new CodeSigner(cpath, null).getTimestamp());
116 assertSame(new CodeSigner(cpath, ts).getTimestamp(), ts);
/libcore/luni/src/main/java/java/security/
H A DCodeSigner.java99 public Timestamp getTimestamp() { method in class:CodeSigner
H A DTimestamp.java104 public Date getTimestamp() { method in class:Timestamp
/libcore/luni/src/main/java/java/sql/
H A DCallableStatement.java694 public Timestamp getTimestamp(int parameterIndex) throws SQLException; method in interface:CallableStatement
713 public Timestamp getTimestamp(int parameterIndex, Calendar cal) method in interface:CallableStatement
729 public Timestamp getTimestamp(String parameterName) throws SQLException; method in interface:CallableStatement
747 public Timestamp getTimestamp(String parameterName, Calendar cal) method in interface:CallableStatement
H A DResultSet.java984 public Timestamp getTimestamp(int columnIndex) throws SQLException; method in interface:ResultSet
1000 public Timestamp getTimestamp(int columnIndex, Calendar cal) method in interface:ResultSet
1014 public Timestamp getTimestamp(String columnName) throws SQLException; method in interface:ResultSet
1030 public Timestamp getTimestamp(String columnName, Calendar cal) method in interface:ResultSet
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldResultSetGetterTests.java1195 Timestamp timeRes = res.getTimestamp(i);
1201 timeRes = res.getTimestamp(i);
1258 Timestamp timeRes = res.getTimestamp(i,new GregorianCalendar());
1264 timeRes = res.getTimestamp(i,new GregorianCalendar());
1315 Timestamp timeRes = res.getTimestamp(col);
1323 timeRes = res.getTimestamp(col);
1373 Timestamp timeRes = res.getTimestamp(stringTimes.get(0),cal2);
1378 timeRes = res.getTimestamp(stringTimes.get(1),cal3);

Completed in 537 milliseconds