Home
last modified time | relevance | path

Searched refs:folderType (Results 1 – 8 of 8) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/widget/
DBaseWidgetProvider.java136 final int folderType = intent.getIntExtra(EXTRA_FOLDER_TYPE, FolderType.DEFAULT); in onReceive() local
144 updateWidgetInternal(context, widgetId, account, folderType, folderCapabilities, in onReceive()
302 final int folderType, final int folderCapabilities, final Uri folderUri, in updateWidget() argument
314 updateWidgetIntent.putExtra(EXTRA_FOLDER_TYPE, folderType); in updateWidget()
338 final int folderType, final int folderCapabilities, final Uri folderUri, in updateWidgetInternal() argument
363 configureValidAccountWidget(context, remoteViews, appWidgetId, account, folderType, in updateWidgetInternal()
403 int appWidgetId, Account account, final int folderType, final int folderCapabilities, in configureValidAccountWidget() argument
406folderType, folderCapabilities, folderUri, folderConversationListUri, folderDisplayName, in configureValidAccountWidget()
DWidgetService.java94 int appWidgetId, Account account, final int folderType, final int folderCapabilities, in configureValidAccountWidget() argument
96 configureValidAccountWidget(context, remoteViews, appWidgetId, account, folderType, in configureValidAccountWidget()
105 int appWidgetId, Account account, final int folderType, final int folderCapabilities, in configureValidAccountWidget() argument
131 folderType, folderCapabilities, folderUri, folderConversationListUri, in configureValidAccountWidget()
136 int appWidgetId, Account account, final int folderType, final int folderCapabilities, in configureValidWidgetIntents() argument
146 intent.putExtra(BaseWidgetProvider.EXTRA_FOLDER_TYPE, folderType); in configureValidWidgetIntents()
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DEmptyFolderDialogFragment.java68 final int numConversations, final int folderType) { in newInstance() argument
74 args.putInt(ARG_FOLDER_TYPE, folderType); in newInstance()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapContent.java770 String folderType = null; in setFolderType() local
775 folderType = BluetoothMapContract.FOLDER_NAME_INBOX; in setFolderType()
777 folderType = BluetoothMapContract.FOLDER_NAME_SENT; in setFolderType()
779 folderType = BluetoothMapContract.FOLDER_NAME_DRAFT; in setFolderType()
781 folderType = BluetoothMapContract.FOLDER_NAME_OUTBOX; in setFolderType()
783 folderType = BluetoothMapContract.FOLDER_NAME_DELETED; in setFolderType()
788 folderType = BluetoothMapContract.FOLDER_NAME_INBOX; in setFolderType()
790 folderType = BluetoothMapContract.FOLDER_NAME_SENT; in setFolderType()
792 folderType = BluetoothMapContract.FOLDER_NAME_DRAFT; in setFolderType()
794 folderType = BluetoothMapContract.FOLDER_NAME_OUTBOX; in setFolderType()
[all …]
DBluetoothMapMessageListingElement.java252 public void setFolderType(String folderType) { in setFolderType() argument
253 this.mFolderType = folderType; in setFolderType()
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DFolder.java725 public boolean isType(final int folderType) { in isType() argument
726 return isType(type, folderType); in isType()
735 public static boolean isType(final int typeMask, final int folderType) { in isType() argument
736 return (typeMask & folderType) != 0; in isType()
/packages/apps/Car/libs/car-broadcastradio-support/src/com/android/car/broadcastradio/support/media/
DBrowseTree.java180 String title, boolean isBrowseable, boolean isPlayable, long folderType, in createFolder() argument
183 extras.putLong(EXTRA_BCRADIO_FOLDER_TYPE, folderType); in createFolder()
/packages/apps/Email/provider_src/com/android/email/provider/
DEmailProvider.java4431 final int folderType = inputCursor.getInt(typeColumn); in remapFolderCursor() local
4446 builder.add(getFolderDisplayName(folderType, value)); in remapFolderCursor()
4451 final int mailboxType = getMailboxTypeFromFolderType(folderType); in remapFolderCursor()
4459 } else if (loadMoreUriColumn == index && folderType != Mailbox.TYPE_SEARCH && in remapFolderCursor()
4498 private String getFolderDisplayName(int folderType, String defaultName) { in getFolderDisplayName() argument
4500 switch (folderType) { in getFolderDisplayName()
4568 private static int getMailboxTypeFromFolderType(int folderType) { in getMailboxTypeFromFolderType() argument
4569 switch (folderType) { in getMailboxTypeFromFolderType()
4592 throw new IllegalArgumentException("Unable to map folder type: " + folderType); in getMailboxTypeFromFolderType()