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

1 2

  /libcore/luni/src/main/java/java/sql/
Types.java 167 * The type code that identifies the SQL type {@code TIMESTAMP}.
169 public static final int TIMESTAMP = 93;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TimeStampParser.java 33 * Parser for TimeStamp header.
46 * @param timeStamp the header to parse
48 public TimeStampParser(String timeStamp) {
49 super(timeStamp);
62 * @return SIPHeader (TimeStamp object)
69 TimeStamp timeStamp = new TimeStamp();
71 headerName(TokenTypes.TIMESTAMP);
73 timeStamp.setHeaderName(SIPHeaderNames.TIMESTAMP)
    [all...]
TokenTypes.java 92 public static final int TIMESTAMP = START + 55;
Lexer.java 132 TokenTypes.TIMESTAMP);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 33 static final String TIMESTAMP = "Timestamp";
58 ID_COL, TIMESTAMP, TAG, ENTRY_TYPE, ACCURACY, LATITUDE, LONGITUDE,
115 private void setTimestamp(String timestamp) {
116 mTimestamp = timestamp;
171 cValues.put(TIMESTAMP, mTimestamp);
209 String timestamp = cursor.getString(cursor.getColumnIndex(TIMESTAMP)); local
213 entry.setTimestamp(timestamp);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothShare.java 214 * The name of the column containing the timestamp when the transfer is
223 public static final String TIMESTAMP = "timestamp";
BluetoothOppTransferHistory.java 104 final String sortOrder = BluetoothShare.TIMESTAMP + " DESC";
108 BluetoothShare.TOTAL_BYTES, BluetoothShare._DATA, BluetoothShare.TIMESTAMP,
BluetoothOppNotification.java 219 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP);
229 int timeStamp = cursor.getInt(timestampIndex);
243 String batchID = Long.toString(timeStamp);
245 // sending objects in one batch has same timeStamp
316 long timeStamp = 0;
343 WHERE_COMPLETED_OUTBOUND, null, BluetoothShare.TIMESTAMP + " DESC");
348 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP);
354 timeStamp = cursor.getLong(timestampIndex);
382 outNoti.when = timeStamp;
393 WHERE_COMPLETED_INBOUND, null, BluetoothShare.TIMESTAMP + " DESC")
    [all...]
BluetoothOppProvider.java 181 + BluetoothShare.TIMESTAMP + " INTEGER," + Constants.MEDIA_SCANNED
269 Long ts = values.getAsLong(BluetoothShare.TIMESTAMP);
273 filteredValues.put(BluetoothShare.TIMESTAMP, ts);
BluetoothOppTransferAdapter.java 120 int dateColumnId = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP);
BluetoothOppUtility.java 78 .getColumnIndexOrThrow(BluetoothShare.TIMESTAMP));
125 public static ArrayList<String> queryTransfersInBatch(Context context, Long timeStamp) {
127 final String WHERE = BluetoothShare.TIMESTAMP + " == " + timeStamp;
158 Long timeStamp, Uri uri) {
BluetoothOppManager.java 381 values.put(BluetoothShare.TIMESTAMP, ts);
BluetoothOppService.java 535 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP)),
553 Log.v(TAG, "TIMESTAMP : " + info.mTimestamp);
568 * 3) If there is existing batch and timestamp match, insert transfer into batch
569 * 4) If there is existing batch and timestamp does not match, create a new batch and
694 info.mTimestamp = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP));
    [all...]
BluetoothOppObexServerSession.java 266 values.put(BluetoothShare.TIMESTAMP, mTimestamp);
445 long timestamp = 0; local
449 if (V) timestamp = System.currentTimeMillis();
464 + (System.currentTimeMillis() - timestamp) + " ms");
TestActivity.java 205 * BluetoothShare.TIMESTAMP}, null, null, null); Log.v(Constants.TAG,
257 values.put(BluetoothShare.TIMESTAMP, ts);
  /external/nist-sip/java/gov/nist/javax/sip/header/
TimeStamp.java 36 * TimeStamp SIP Header.
46 public class TimeStamp extends SIPHeader implements TimeStampHeader {
54 * timeStamp field
56 protected long timeStamp = -1;
70 public TimeStamp() {
71 super(TIMESTAMP);
76 if (timeStamp == -1 && timeStampFloat == -1)
78 else if (timeStamp != -1)
79 return Long.toString(timeStamp);
130 public void setTimeStamp(float timeStamp) throws InvalidArgumentException
    [all...]
NameMap.java 105 putNameMap(TIMESTAMP, TimeStamp.class.getName()); //14
SIPHeaderNames.java 60 public static final String TIMESTAMP = TimeStampHeader.NAME; //14
  /libcore/luni/src/test/java/com/google/coretests/
XmlReportPrinter.java 64 private static final String TIMESTAMP = "timestamp";
130 String timestamp = dateFormat.format(new Date()); local
142 suite.print(serializer, timestamp);
170 void print(KXmlSerializer serializer, String timestamp) throws IOException {
178 serializer.attribute(ns, TIMESTAMP, timestamp);
  /libcore/sqlite-jdbc/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 33 case Types.TIMESTAMP: return "java.sql.Timestamp";
111 case Types.TIMESTAMP: return "timestamp";
JDBCDatabaseMetaData.java     [all...]
  /packages/apps/Email/tests/src/com/android/email/activity/
MessageListUnitTests.java 82 String subject, long timestamp, int flagRead, int flagFavorite, int flagAttachment,
90 emap.put(MessageColumns.TIMESTAMP, timestamp);
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java 175 // source's timestamp (long) for this item
398 public static final String TIMESTAMP = "timeStamp";
449 public static final String KEY_TIMESTAMP_DESC = MessageColumns.TIMESTAMP + " desc";
475 MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP,
503 MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP,
609 values.put(MessageColumns.TIMESTAMP, mTimeStamp);
    [all...]
EmailProvider.java 292 + MessageColumns.TIMESTAMP + " integer, "
332 MessageColumns.TIMESTAMP,
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java     [all...]

Completed in 926 milliseconds

1 2