Searched defs:folderId (Results 1 - 5 of 5) sorted by relevance

/packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
H A DPartnerBookmarksContract.java81 * @param folderId the ID of the folder to point to
83 public static final Uri buildFolderUri(long folderId) { argument
84 return ContentUris.withAppendedId(CONTENT_URI_PARTNER_BOOKMARKS_FOLDER, folderId);
/packages/apps/Browser/src/com/android/browser/addbookmark/
H A DFolderSpinnerAdapter.java55 public void addRecentFolder(long folderId, String folderName) { argument
57 mRecentFolderId = folderId;
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
H A DMockUiProvider.java277 private static Map<String, Object> createFolderDetailsMap(int folderId, int accountId, argument
279 return createFolderDetailsMap(folderId, accountId, name, false, unread, total);
282 private static Map<String, Object> createFolderDetailsMap(int folderId, int accountId, argument
284 final String folderUri = getMockAccountFolderUri(accountId, folderId);
287 folderMap.put(BaseColumns._ID, Long.valueOf(folderId));
395 private static String getMockAccountFolderUri(int accountId, int folderId) { argument
396 return getMockAccountUri(accountId) + "/folder/" + folderId;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DNestedFolderTeaserView.java447 private static int getLoaderId(final int folderId) { argument
448 return folderId + LOADER_FOLDER_LIST;
512 for (final int folderId : oldFolderIds) {
514 mFolderHolders.remove(folderId);
515 mLoaderManager.destroyLoader(getLoaderId(folderId));
597 final int folderId = getFolderId(loader.getId());
599 final FolderHolder folderHolder = mFolderHolders.get(folderId);
603 LogUtils.d(LOG_TAG, "Folder id %d loader finished", folderId);
661 final int folderId = getFolderId(id);
662 final Uri uri = mFolderHolders.get(folderId)
[all...]
/packages/apps/Email/src/com/android/email/provider/
H A DEmailProvider.java3716 final long folderId = c.getLong(0);
3717 recentFolders[i] = uiUri("uifolder", folderId);
3718 LogUtils.d(TAG, "Default recent folder: %d, with uri %s", folderId, recentFolders[i]);
5150 * @param folderId the folder id to be notified
5153 private void notifyUIFolder(final String folderId, final long accountId) { argument
5154 notifyUI(UIPROVIDER_CONVERSATION_NOTIFIER, folderId);
5155 notifyUI(UIPROVIDER_FOLDER_NOTIFIER, folderId);
5173 final String folderId = (String) message.obj;
5174 LogUtils.d(TAG, "Notifying conversation Uri %s twice", folderId);
5175 notifyUI(UIPROVIDER_CONVERSATION_NOTIFIER, folderId);
5188 notifyUIFolder(final long folderId, final long accountId) argument
[all...]

Completed in 855 milliseconds