Searched defs:mId (Results 1 - 25 of 40) sorted by relevance

12

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DWordListInfo.java23 public final String mId; field in class:WordListInfo
26 mId = id;
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DMockTextAppearanceFactory.java47 private final int mId; field in class:MockTextAppearanceFactory.MockStyleSpan
49 mId = id;
52 return mId;
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadHandler.java43 if (!mDownloadsQueue.containsKey(info.mId)) {
45 Log.i(TAG, "enqueued download. id: " + info.mId + ", uri: " + info.mUri);
47 mDownloadsQueue.put(info.mId, info);
74 synchronized void dequeueDownload(long mId) { argument
75 mDownloadsInProgress.remove(mId);
93 Log.i(TAG, "** progress: " + info.mId + ", " + info.mUri);
96 Log.i(TAG, "** in Q: " + info.mId + ", " + info.mUri);
H A DDownloadNotification.java65 int mId; // This first db _id for the download for the app field in class:DownloadNotification.NotificationItem
121 long id = download.mId;
134 item.mId = (int) id;
190 ContentUris.withAppendedId(Downloads.Impl.ALL_DOWNLOADS_CONTENT_URI, item.mId));
195 mSystemFacade.postNotification(item.mId, builder.getNotification());
205 notificationForCompletedDownload(download.mId, download.mTitle,
/packages/apps/Contacts/tests/src/com/android/contacts/util/
H A DStreamItemEntryBuilder.java23 private long mId; field in class:StreamItemEntryBuilder
62 return new StreamItemEntry(mId, mText, mComment, mTimestamp, mAccountType, mAccountName,
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DMockTask.java26 private final int mId; field in class:MockTask
31 mId = id;
55 return mName + mId;
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppBatch.java66 public int mId; field in class:BluetoothOppBatch
115 if (V) Log.v(TAG, "New Batch created for info " + info.mId);
128 mListener.onShareAdded(info.mId);
147 mListener.onShareDeleted(info.mId);
159 if (V) Log.v(TAG, "batch " + this.mId + " is canceled");
172 if (V) Log.v(TAG, "Cancel batch for info " + info.mId);
174 Constants.updateShareStatus(mContext, info.mId, BluetoothShare.STATUS_CANCELED);
H A DBluetoothOppShareInfo.java41 public int mId; field in class:BluetoothOppShareInfo
72 mId = id;
/packages/apps/Browser/src/com/android/browser/
H A DPreloader.java66 } else if (mSession.mId.equals(id)) {
71 if (LOGD_ENABLED) Log.d(LOGTAG, "Existing session in progress : " + mSession.mId +
78 if (mSession != null && mSession.mId.equals(id)) {
141 private final String mId; field in class:Preloader.PreloaderSession
147 if (LOGD_ENABLED) Log.d(LOGTAG, "Preload session timeout " + mId);
148 discardPreload(mId);
152 mId = id;
/packages/apps/Calendar/src/com/android/calendar/
H A DTimezoneAdapter.java57 public final String mId; field in class:TimezoneAdapter.TimezoneRow
72 mId = id;
114 result = prime * result + ((mId == null) ? 0 : mId.hashCode());
138 if (mId == null) {
139 if (other.mId != null) {
142 } else if (!mId.equals(other.mId)) {
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DPhotoActionPopup.java109 private final int mId; field in class:PhotoActionPopup.ChoiceListItem
118 mId = id;
128 return mId;
/packages/apps/Contacts/src/com/android/contacts/util/
H A DStreamItemPhotoEntry.java29 private final long mId; field in class:StreamItemPhotoEntry
39 mId = id;
51 mId = getLong(cursor, StreamItemPhotos._ID);
61 return mId;
95 return mId == streamItemPhotoEntry.mId ? 0
96 : mId < streamItemPhotoEntry.mId ? -1 : 1;
H A DStreamItemEntry.java36 private final long mId; field in class:StreamItemEntry
56 mId = id;
72 mId = getLong(cursor, StreamItems._ID);
95 return mId;
/packages/apps/Gallery/tests/src/com/android/camera/gallery/
H A DMockImage.java10 private final long mId; field in class:MockImage
15 mId = id;
46 return mId;
/packages/apps/Mms/src/com/android/mms/transaction/
H A DTransaction.java41 protected String mId; field in class:Transaction
94 && mId.equals(transaction.mId);
/packages/apps/VideoEditor/src/com/android/videoeditor/service/
H A DMovieTheme.java107 private final String mId; field in class:MovieTheme
133 mId = id;
152 return mId;
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
H A DAbstractPublicApiTest.java36 final long mId; field in class:AbstractPublicApiTest.Download
39 this.mId = downloadId;
47 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
63 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
74 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
85 ParcelFileDescriptor downloadedFile = mManager.openDownloadedFile(mId);
127 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactListFilter.java57 private String mId; field in class:ContactListFilter
238 if (mId == null) {
250 mId = sb.toString();
252 return mId;
/packages/apps/DeskClock/src/com/android/deskclock/
H A DSetAlarm.java56 private int mId; field in class:SetAlarm
103 // sets mId so it must be called before checking mId below.
129 if (mId == -1) {
197 mId = alarm.id;
270 // addAlarm populates the alarm with the new id. Update mId so that
272 mId = alarm.id;
281 alarm.id = mId;
299 Alarms.deleteAlarm(SetAlarm.this, mId);
308 int newId = mId;
[all...]
/packages/apps/Email/src/com/android/email/
H A DAttachmentInfo.java68 public final long mId; field in class:AttachmentInfo
85 this(context, attachment.mId, attachment.mSize, attachment.mFileName, attachment.mMimeType,
96 this(context, info.mId, info.mSize, info.mName, info.mContentType, info.mAccountKey,
105 mId = id;
203 Uri contentUri = AttachmentUtilities.getAttachmentUri(accountId, mId);
222 return (int) (mId ^ (mId >>> 32));
235 return ((AttachmentInfo) o).mId == mId;
240 return "{Attachment " + mId
[all...]
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DBaseImage.java46 protected long mId; field in class:BaseImage
63 mId = id;
94 Uri url = mContainer.contentUri(mId);
171 long id = mId;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DBasicTexture.java37 protected int mId; field in class:BasicTexture
55 mId = id;
84 return mId;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardParams.java34 public KeyboardId mId; field in class:KeyboardParams
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DVoicemailContentProvider.java168 private final String mId; field in class:VoicemailContentProvider.UriData
175 mId = id;
186 return mId != null;
191 return mId;
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DAsyncQueryServiceTest.java63 private static int mId = 0; field in class:AsyncQueryServiceTest
92 work[index].token = ++mId;
93 work[index].cookie = ++mId;
121 work[index].token = ++mId;
122 work[index].cookie = ++mId;
125 work[index].values.put("key", ++mId);
128 work[index].result = Uri.parse(AUTHORITY_URI + "Result=" + ++mId);
147 work[index].token = ++mId;
148 work[index].cookie = ++mId;
149 work[index].uri = Uri.parse(AUTHORITY_URI + ++mId);
[all...]

Completed in 796 milliseconds

12