Home
last modified time | relevance | path

Searched refs:mTimestamp (Results 1 – 24 of 24) sorted by relevance

/packages/services/Car/tests/BugReportApp/src/com/google/android/car/bugreport/
DMetaBugReport.java24 private final String mTimestamp; field in MetaBugReport
33 mTimestamp = builder.mTimestamp; in MetaBugReport()
66 return mTimestamp == null ? "" : mTimestamp; in getTimestamp()
98 dest.writeString(mTimestamp); in writeToParcel()
134 private final String mTimestamp; field in MetaBugReport.Builder
149 mTimestamp = timestamp; in Builder()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DProbabilityInfo.java30 public final int mTimestamp; field in ProbabilityInfo
54 mTimestamp = timestamp; in ProbabilityInfo()
60 return mTimestamp != BinaryDictionary.NOT_A_VALID_TIMESTAMP; in hasHistoricalInfo()
66 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount }); in hashCode()
84 return mProbability == p.mProbability && mTimestamp == p.mTimestamp && mLevel == p.mLevel in equals()
/packages/apps/Contacts/src/com/android/contacts/util/
DDataStatus.java37 private long mTimestamp = -1; field in DataStatus
67 if (newTimestamp < mTimestamp) return; in possibleUpdate()
69 mTimestamp = newTimestamp; in possibleUpdate()
79 mTimestamp = getLong(cursor, Data.STATUS_TIMESTAMP, -1); in fromCursor()
98 return mTimestamp; in getTimestamp()
110 final boolean validTimestamp = mTimestamp > 0; in getTimestampLabel()
114 mTimestamp, System.currentTimeMillis(), DateUtils.MINUTE_IN_MILLIS, in getTimestampLabel()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/property/
Dhistorical_info.h28 : mTimestamp(NOT_A_TIMESTAMP), mLevel(0), mCount(0) {} in HistoricalInfo()
31 : mTimestamp(timestamp), mLevel(level), mCount(count) {} in HistoricalInfo()
34 return mTimestamp != NOT_A_TIMESTAMP; in isValid()
38 return mTimestamp; in getTimestamp()
54 const int mTimestamp; variable
/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyValue.java43 private final long mTimestamp; field in CarPropertyValue
93 mTimestamp = timestamp; in CarPropertyValue()
107 mTimestamp = in.readLong(); in CarPropertyValue()
148 dest.writeLong(mTimestamp); in writeToParcel()
188 return mTimestamp; in getTimestamp()
206 ", mTimestamp=" + mTimestamp + in toString()
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
Dver4_patricia_trie_writing_helper.h86 : mDictPos(dictPos), mProbability(probability), mTimestamp(timestamp) {} in DictProbability()
97 return mTimestamp; in getTimestamp()
105 int mTimestamp; variable
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppBatch.java69 public final long mTimestamp; field in BluetoothOppBatch
109 mTimestamp = info.mTimestamp; in BluetoothOppBatch()
DBluetoothOppService.java275 Date date = new Date(info.mTimestamp); in dump()
756 Log.v(TAG, "TIMESTAMP : " + info.mTimestamp); in insertShare()
824 int i = findBatchWithTimeStamp(info.mTimestamp); in insertShare()
893 info.mTimestamp = cursor.getLong(cursor.getColumnIndexOrThrow(BluetoothShare.TIMESTAMP)); in updateShare()
902 int i = findBatchWithTimeStamp(info.mTimestamp); in updateShare()
910 int i = findBatchWithTimeStamp(info.mTimestamp); in updateShare()
957 int i = findBatchWithTimeStamp(info.mTimestamp); in deleteShare()
1005 if (mBatches.get(i).mTimestamp == timestamp) { in findBatchWithTimeStamp()
DBluetoothOppTransfer.java103 private long mTimestamp; field in BluetoothOppTransfer
665 private long mTimestamp; field in BluetoothOppTransfer.SocketConnectThread
737 - mTimestamp) + " ms"); in connectRfcommSocket()
769 mTimestamp = System.currentTimeMillis(); in run()
804 - mTimestamp) + " ms"); in run()
DBluetoothOppShareInfo.java67 public long mTimestamp; field in BluetoothOppShareInfo
86 mTimestamp = timestamp; in BluetoothOppShareInfo()
DBluetoothOppObexServerSession.java95 private long mTimestamp; field in BluetoothOppObexServerSession
277 values.put(BluetoothShare.TIMESTAMP, mTimestamp); in onPut()
608 mTimestamp = System.currentTimeMillis(); in onConnect()
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
DAndroidImageProxy.java92 private final long mTimestamp; field in AndroidImageProxy
108 mTimestamp = mImage.getTimestamp(); in AndroidImageProxy()
183 return mTimestamp; in getTimestamp()
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DConversationListItemData.java46 private long mTimestamp; field in ConversationListItemData
84 mTimestamp = cursor.getLong(INDEX_SORT_TIMESTAMP); in bind()
142 return Dates.getConversationTimeString(mTimestamp).toString(); in getFormattedTimestamp()
146 return mTimestamp; in getTimestamp()
276 DeleteConversationAction.deleteConversation(mConversationId, mTimestamp); in deleteConversation()
/packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/
DDiagnosticJson.java85 final WriteOnce<Long> mTimestamp = new WriteOnce<>(); field in DiagnosticJson.Builder
129 mTimestamp.write(jsonReader.nextLong()); in Builder()
153 mType.get(), mTimestamp.get(), mIntValues, mFloatValues, mDtc.get(null)); in build()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
DInputTransaction.java37 public final long mTimestamp; field in InputTransaction
51 mTimestamp = timestamp; in InputTransaction()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DWordInputEventForPersonalization.java44 public final int mTimestamp; field in WordInputEventForPersonalization
52 mTimestamp = timestamp; in WordInputEventForPersonalization()
DCombinedFormatUtils.java97 builder.append(probabilityInfo.mTimestamp); in formatProbabilityInfo()
/packages/apps/Messaging/src/com/android/messaging/sms/
DDatabaseMessages.java876 private final long mTimestamp; field in DatabaseMessages.LocalDatabaseMessage
885 mTimestamp = timestamp; in LocalDatabaseMessage()
896 return mTimestamp; in getTimestampInMillis()
921 mTimestamp = in.readLong(); in LocalDatabaseMessage()
943 out.writeLong(mTimestamp); in writeToParcel()
/packages/services/Car/car-lib/src/android/car/diagnostic/
DCarDiagnosticEvent.java198 private long mTimestamp = 0; field in CarDiagnosticEvent.Builder
223 mTimestamp = timestamp; in atTimestamp()
233 mTimestamp = timeStamp; in setTimeStamp()
301 return new CarDiagnosticEvent(mType, mTimestamp, mFloatValues, mIntValues, mDtc); in build()
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DCombinedInputOutput.java127 probabilityInfo.mTimestamp, probabilityInfo.mLevel, in readDictionaryCombined()
160 bigramProbabilityInfo.mTimestamp, bigramProbabilityInfo.mLevel, in readDictionaryCombined()
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
DMceStateMachine.java140 private final Long mTimestamp; field in MceStateMachine.MessageMetadata
145 mTimestamp = timestamp; in MessageMetadata()
154 return mTimestamp; in getTimestamp()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
DInputLogic.java446 || inputTransaction.mTimestamp > mLastKeyTime + Constants.LONG_PRESS_MILLISECONDS) { in onCodeInput()
449 mLastKeyTime = inputTransaction.mTimestamp; in onCodeInput()
1297 mDoubleSpacePeriodCountdownStart = inputTransaction.mTimestamp; in startDoubleSpacePeriodCountdown()
1305 return inputTransaction.mTimestamp - mDoubleSpacePeriodCountdownStart in isDoubleSpacePeriodCountdownActive()
/packages/apps/Email/provider_src/com/android/email/service/
DImapService.java225 final long mTimestamp; field in ImapService.LocalMessageInfo
234 mTimestamp = c.getLong(COLUMN_TIMESTAMP); in LocalMessageInfo()
711 if (info.mTimestamp >= endDate && !remoteUidMap.containsKey(info.mServerId)) { in synchronizeMailboxGeneric()
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
DPanoramaActivity.java145 private long mTimestamp; field in PanoramaActivity
573 mTimestamp = 0; in startCapture()