Searched defs:getTime (Results 1 - 13 of 13) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
H A DTime.java83 public String getTime() method in class:Time
91 return ((DERGeneralizedTime)time).getTime();
99 return dateF.parse(this.getTime(), new ParsePosition(0));
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
H A DTime.java85 public String getTime() method in class:Time
93 return ((DERGeneralizedTime)time).getTime();
101 return dateF.parse(this.getTime(), new ParsePosition(0));
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DDERGeneralizedTime.java109 public String getTime() method in class:DERGeneralizedTime
H A DDERUTCTime.java57 * the input stream... (this is why the input format is different from the getTime()
114 public String getTime() method in class:DERUTCTime
141 String d = this.getTime();
/dalvik/libcore/sql/src/main/java/java/sql/
H A DTimestamp.java119 long thisTime = this.getTime();
120 long compareTime = theTimestamp.getTime();
151 long thisTime = this.getTime();
152 long compareTime = theTimestamp.getTime();
265 return (this.getTime() == theTimestamp.getTime())
288 public long getTime() { method in class:Timestamp
289 long theTime = super.getTime();
504 Timestamp theTimestamp = new Timestamp(theDate.getTime());
H A DCallableStatement.java626 public Time getTime(int parameterIndex) throws SQLException; method in interface:CallableStatement
646 public Time getTime(int parameterIndex, Calendar cal) throws SQLException; method in interface:CallableStatement
660 public Time getTime(String parameterName) throws SQLException; method in interface:CallableStatement
679 public Time getTime(String parameterName, Calendar cal) throws SQLException; method in interface:CallableStatement
H A DResultSet.java928 public Time getTime(int columnIndex) throws SQLException; method in interface:ResultSet
944 public Time getTime(int columnIndex, Calendar cal) throws SQLException; method in interface:ResultSet
957 public Time getTime(String columnName) throws SQLException; method in interface:ResultSet
973 public Time getTime(String columnName, Calendar cal) throws SQLException; method in interface:ResultSet
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DZipEntry.java155 public long getTime() { method in class:ZipEntry
162 return cal.getTime().getTime();
/dalvik/libcore/luni/src/main/java/java/util/
H A DDate.java315 public long getTime() { method in class:Date
562 .getTime();
757 * cal.getTime().getTime();</code>
798 stream.writeLong(getTime());
H A DCalendar.java166 * {@code getTime()}, or {@code getTimeInMillis()} is made. Thus,
179 * representation that resolves to October 1, 1999 if {@code getTime()}is
181 * before the call to {@code getTime()} sets the calendar to September
1053 public final Date getTime() { method in class:Calendar
1284 setTimeInMillis(date.getTime());
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDateTest.java50 static long TIME_TESTDATE1 = getTime(1999, Calendar.DECEMBER, 31, 23, 59,
53 static long TIME_TESTDATE2 = getTime(2010, Calendar.JUNE, 10, 20, 3, 16);
55 static long TIME_TESTDATE3 = getTime(1931, Calendar.APRIL, 21, 1, 25, 1);
105 static private long getTime(int year, int month, int date, int hour, method in class:DateTest
109 } // end method getTime( int, int, int, int, int, int )
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCResultSet.java197 public java.sql.Time getTime(int columnIndex) throws SQLException { method in class:JDBCResultSet
217 public java.sql.Time getTime(String columnName) throws SQLException { method in class:JDBCResultSet
219 return getTime(col);
222 public java.sql.Time getTime(int columnIndex, java.util.Calendar cal) method in class:JDBCResultSet
227 public java.sql.Time getTime(String columnName, java.util.Calendar cal) method in class:JDBCResultSet
230 return getTime(col, cal);
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java486 public Time getTime(int columnIndex, Calendar cal) throws SQLException { method in class:Impl_RowSet
490 public Time getTime(int columnIndex) throws SQLException { method in class:Impl_RowSet
494 public Time getTime(String columnName, Calendar cal) throws SQLException { method in class:Impl_RowSet
498 public Time getTime(String columnName) throws SQLException { method in class:Impl_RowSet

Completed in 169 milliseconds