/packages/apps/UnifiedEmail/src/com/android/mail/widget/ |
D | BaseWidgetProvider.java | 136 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 406 … folderType, folderCapabilities, folderUri, folderConversationListUri, folderDisplayName, in configureValidAccountWidget()
|
D | WidgetService.java | 94 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/ |
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 | BluetoothMapContent.java | 770 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 …]
|
D | BluetoothMapMessageListingElement.java | 252 public void setFolderType(String folderType) { in setFolderType() argument 253 this.mFolderType = folderType; in setFolderType()
|
/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/Car/libs/car-broadcastradio-support/src/com/android/car/broadcastradio/support/media/ |
D | BrowseTree.java | 180 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/ |
D | EmailProvider.java | 4431 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()
|