/packages/apps/UnifiedEmail/src/com/android/mail/widget/ |
D | BaseWidgetProvider.java | 132 final int folderType = intent.getIntExtra(EXTRA_FOLDER_TYPE, FolderType.DEFAULT); in onReceive() local 140 updateWidgetInternal(context, widgetId, account, folderType, folderCapabilities, in onReceive() 296 final int folderType, final int folderCapabilities, final Uri folderUri, in updateWidget() argument 308 updateWidgetIntent.putExtra(EXTRA_FOLDER_TYPE, folderType); in updateWidget() 324 final int folderType, final int folderCapabilities, final Uri folderUri, in updateWidgetInternal() argument 349 configureValidAccountWidget(context, remoteViews, appWidgetId, account, folderType, in updateWidgetInternal() 387 int appWidgetId, Account account, final int folderType, final int folderCapabilities, in configureValidAccountWidget() argument 390 … folderType, folderCapabilities, folderUri, folderConversationListUri, folderDisplayName, in configureValidAccountWidget()
|
D | WidgetService.java | 74 int appWidgetId, Account account, final int folderType, final int folderCapabilities, in configureValidAccountWidget() argument 76 configureValidAccountWidget(context, remoteViews, appWidgetId, account, folderType, in configureValidAccountWidget() 85 int appWidgetId, Account account, final int folderType, final int folderCapabilities, in configureValidAccountWidget() argument 111 folderType, folderCapabilities, folderUri, folderConversationListUri, in configureValidAccountWidget() 116 int appWidgetId, Account account, final int folderType, final int folderCapabilities, in configureValidWidgetIntents() argument 126 intent.putExtra(BaseWidgetProvider.EXTRA_FOLDER_TYPE, folderType); in configureValidWidgetIntents()
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
D | EmptyFolderDialogFragment.java | 68 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/ |
D | BluetoothMapMessageListingElement.java | 255 public void setFolderType(String folderType) { in setFolderType() argument 256 this.mFolderType = folderType; in setFolderType()
|
D | BluetoothMapContent.java | 757 String folderType = null; in setFolderType() local 762 folderType = BluetoothMapContract.FOLDER_NAME_INBOX; in setFolderType() 764 folderType = BluetoothMapContract.FOLDER_NAME_SENT; in setFolderType() 766 folderType = BluetoothMapContract.FOLDER_NAME_DRAFT; in setFolderType() 768 folderType = BluetoothMapContract.FOLDER_NAME_OUTBOX; in setFolderType() 770 folderType = BluetoothMapContract.FOLDER_NAME_DELETED; in setFolderType() 774 folderType = BluetoothMapContract.FOLDER_NAME_INBOX; in setFolderType() 776 folderType = BluetoothMapContract.FOLDER_NAME_SENT; in setFolderType() 778 folderType = BluetoothMapContract.FOLDER_NAME_DRAFT; in setFolderType() 780 folderType = BluetoothMapContract.FOLDER_NAME_OUTBOX; in setFolderType() [all …]
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
D | Folder.java | 725 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/Email/provider_src/com/android/email/provider/ |
D | EmailProvider.java | 4430 final int folderType = inputCursor.getInt(typeColumn); in remapFolderCursor() local 4445 builder.add(getFolderDisplayName(folderType, value)); in remapFolderCursor() 4450 final int mailboxType = getMailboxTypeFromFolderType(folderType); in remapFolderCursor() 4458 } else if (loadMoreUriColumn == index && folderType != Mailbox.TYPE_SEARCH && in remapFolderCursor() 4497 private String getFolderDisplayName(int folderType, String defaultName) { in getFolderDisplayName() argument 4499 switch (folderType) { in getFolderDisplayName() 4567 private static int getMailboxTypeFromFolderType(int folderType) { in getMailboxTypeFromFolderType() argument 4568 switch (folderType) { in getMailboxTypeFromFolderType() 4591 throw new IllegalArgumentException("Unable to map folder type: " + folderType); in getMailboxTypeFromFolderType()
|