/libcore/luni/src/main/java/java/sql/ |
Types.java | 166 * The type code that identifies the SQL type {@code TIMESTAMP}. 168 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);
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TypesTest.java | 61 assertEquals(TIMESTAMP, 93);
|
/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";
|
BluetoothOppNotification.java | 113 int timeStamp = 0; // Database time stamp. Used for sorting ongoing transfers. 220 final int timestampIndex = cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP); 230 int timeStamp = cursor.getInt(timestampIndex); 244 String batchID = Long.toString(timeStamp); 246 // sending objects in one batch has same timeStamp 252 item.timeStamp = timeStamp; 283 b.setWhen(item.timeStamp); 307 long timeStamp = 0; 334 WHERE_COMPLETED_OUTBOUND, null, BluetoothShare.TIMESTAMP + " DESC") [all...] |
BluetoothOppTransferHistory.java | 117 final String sortOrder = BluetoothShare.TIMESTAMP + " DESC"; 121 BluetoothShare.TOTAL_BYTES, BluetoothShare._DATA, BluetoothShare.TIMESTAMP,
|
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 | 380 values.put(BluetoothShare.TIMESTAMP, ts);
|
BluetoothOppService.java | 533 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP)), 551 Log.v(TAG, "TIMESTAMP : " + info.mTimestamp); 566 * 3) If there is existing batch and timestamp match, insert transfer into batch 567 * 4) If there is existing batch and timestamp does not match, create a new batch and 692 info.mTimestamp = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP)); [all...] |
/packages/apps/Email/src/com/android/email/widget/ |
EmailWidgetLoader.java | 42 private static final String SORT_TIMESTAMP_DESCENDING = MessageColumns.TIMESTAMP + " DESC"; 46 EmailContent.RECORD_ID, MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP,
|
/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
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
StreamItemEntry.java | 53 public StreamItemEntry(long id, String text, String comments, long timestamp, 59 mTimestamp = timestamp; 75 mTimestamp = getLong(cursor, StreamItems.TIMESTAMP);
|
/external/javasqlite/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/src/com/android/email/activity/ |
MessagesAdapter.java | 58 MessageColumns.DISPLAY_NAME, MessageColumns.SUBJECT, MessageColumns.TIMESTAMP, 289 EmailContent.MessageColumns.TIMESTAMP + " DESC");
|
MessageOrderManager.java | 52 * than timestamp? 350 null, EmailContent.MessageColumns.TIMESTAMP + " DESC");
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
EmailContent.java | 225 // source's timestamp (long) for this item 454 public static final String TIMESTAMP = "timeStamp"; 515 public static final String KEY_TIMESTAMP_DESC = MessageColumns.TIMESTAMP + " desc"; 543 MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP, 573 MessageColumns.DISPLAY_NAME, MessageColumns.TIMESTAMP, [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/tests/streamitems/ |
StreamItemPopulatorActivity.java | 278 // Set the timestamp to some point in the past. 279 values.put(StreamItems.TIMESTAMP,
|