Searched refs:mTimestamp (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/util/
H A DStreamItemEntry.java44 private final long mTimestamp; field in class:StreamItemEntry
75 mTimestamp = timestamp;
91 mTimestamp = getLong(cursor, StreamItems.TIMESTAMP);
107 return mTimestamp == other.mTimestamp ? 0 : mTimestamp > other.mTimestamp ? -1 : 1;
123 return mTimestamp;
/packages/apps/Contacts/tests/src/com/android/contacts/util/
H A DStreamItemEntryBuilder.java28 private long mTimestamp; field in class:StreamItemEntryBuilder
64 StreamItemEntry ret = StreamItemEntry.createForTest(mId, mText, mComment, mTimestamp,
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DDataStatus.java37 private long mTimestamp = -1; field in class:DataStatus
67 if (newTimestamp < mTimestamp) return;
69 mTimestamp = newTimestamp;
79 mTimestamp = getLong(cursor, Data.STATUS_TIMESTAMP, -1);
98 return mTimestamp;
110 final boolean validTimestamp = mTimestamp > 0;
114 mTimestamp, System.currentTimeMillis(), DateUtils.MINUTE_IN_MILLIS,
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/
H A DDataStatus.java35 private long mTimestamp = -1; field in class:DataStatus
65 if (newTimestamp < mTimestamp) return;
67 mTimestamp = newTimestamp;
77 mTimestamp = getLong(cursor, Data.STATUS_TIMESTAMP, -1);
104 final boolean validTimestamp = mTimestamp > 0;
108 mTimestamp, System.currentTimeMillis(), DateUtils.MINUTE_IN_MILLIS,
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppShareInfo.java67 public long mTimestamp; field in class:BluetoothOppShareInfo
86 mTimestamp = timestamp;
H A DBluetoothOppBatch.java69 public final long mTimestamp; field in class:BluetoothOppBatch
109 mTimestamp = info.mTimestamp;
H A DBluetoothOppService.java586 Log.v(TAG, "TIMESTAMP : " + info.mTimestamp);
646 int i = findBatchWithTimeStamp(info.mTimestamp);
721 info.mTimestamp = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP));
727 int i = findBatchWithTimeStamp(info.mTimestamp);
735 int i = findBatchWithTimeStamp(info.mTimestamp);
780 int i = findBatchWithTimeStamp(info.mTimestamp);
824 if (mBatchs.get(i).mTimestamp == timestamp) {
H A DBluetoothOppObexServerSession.java90 private long mTimestamp; field in class:BluetoothOppObexServerSession
275 values.put(BluetoothShare.TIMESTAMP, mTimestamp);
576 mTimestamp = System.currentTimeMillis();
H A DBluetoothOppTransfer.java105 private long mTimestamp; field in class:BluetoothOppTransfer
/packages/apps/Mms/src/com/android/mms/transaction/
H A DSmsMessageSender.java43 protected long mTimestamp; field in class:SmsMessageSender
68 mTimestamp = System.currentTimeMillis();
97 mMessageText, null, mTimestamp,
/packages/apps/Mms/src/com/android/mms/ui/
H A DMessageItem.java77 String mTimestamp; field in class:MessageItem
157 mTimestamp = MessageUtils.formatTimeStampString(context, date);
182 mTimestamp = "";
390 mTimestamp = mContext.getString(R.string.expire_on,
393 mTimestamp = MessageUtils.formatTimeStampString(mContext, timestamp);
H A DMessageListItem.java211 mDateView.setText(buildTimestampLine(msgSizeText + " " + mMessageItem.mTimestamp));
366 mMessageItem.mTimestamp));
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoramaActivity.java145 private long mTimestamp; field in class:PanoramaActivity
573 mTimestamp = 0;
/packages/apps/Email/src/com/android/email/service/
H A DImapService.java190 final long mTimestamp; field in class:ImapService.LocalMessageInfo
199 mTimestamp = c.getLong(COLUMN_TIMESTAMP);
638 if (info.mTimestamp >= endDate && !remoteUidMap.containsKey(info.mServerId)) {

Completed in 520 milliseconds