Searched defs:theTime (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/java/sql/
H A DDate.java159 * @param theTime
163 public void setTime(long theTime) { argument
168 super.setTime(normalizeTime(theTime));
243 private static long normalizeTime(long theTime) { argument
244 return theTime;
H A DTime.java60 * @param theTime
64 public Time(long theTime) { argument
65 super(theTime);
H A DTimestamp.java95 * @param theTime
99 public Timestamp(long theTime) { argument
100 super(theTime);
105 setTimeImpl(theTime);
288 long theTime = super.getTime();
289 theTime = theTime + (nanos / 1000000);
290 return theTime;
314 * @param theTime
319 public void setTime(long theTime) { argument
323 setTimeImpl(long theTime) argument
[all...]
H A DSQLOutput.java157 * @param theTime
163 public void writeTime(Time theTime) throws SQLException; argument
H A DPreparedStatement.java581 * @param theTime
587 public void setTime(int parameterIndex, Time theTime) throws SQLException; argument
601 * @param theTime
612 public void setTime(int parameterIndex, Time theTime, Calendar cal) argument
H A DCallableStatement.java1292 * @param theTime
1298 public void setTime(String parameterName, Time theTime) throws SQLException; argument
1311 * @param theTime
1319 public void setTime(String parameterName, Time theTime, Calendar cal) argument
/libcore/luni/src/main/java/javax/sql/
H A DRowSet.java1597 * @param theTime
1604 public void setTime(int parameterIndex, Time theTime) throws SQLException; argument
1614 * @param theTime
1623 public void setTime(int parameterIndex, Time theTime, Calendar theCalendar) argument
1633 * @param theTime
1638 public void setTime(String parameterName, Time theTime) throws SQLException; argument
1647 * @param theTime
1654 public void setTime(String parameterName, Time theTime, Calendar theCalendar) argument

Completed in 995 milliseconds