Home
last modified time | relevance | path

Searched refs:folderListUri (Results 1 – 11 of 11) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
DAccount.java103 public final Uri folderListUri; field in Account
273 json.put(AccountColumns.FOLDER_LIST_URI, folderListUri); in serialize()
394 folderListUri = Utils in Account()
467 folderListUri = Uri.parse( in Account()
604 folderListUri = in.readParcelable(null); in Account()
653 dest.writeParcelable(folderListUri, 0); in writeToParcel()
720 Objects.equal(folderListUri, other.folderListUri) && in equals()
776 folderListUri, in hashCode()
937 map.put(AccountColumns.FOLDER_LIST_URI, folderListUri); in getValueMap()
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DFolderListFragment.java269 public static FolderListFragment ofTopLevelTree(Uri folderListUri, in ofTopLevelTree() argument
272 fragment.setArguments(getBundleFromArgs(null, folderListUri, excludedFolderTypes)); in ofTopLevelTree()
285 private static Bundle getBundleFromArgs(Folder parentFolder, Uri folderListUri, in getBundleFromArgs() argument
291 if (folderListUri != null) { in getBundleFromArgs()
292 args.putString(ARG_FOLDER_LIST_URI, folderListUri.toString()); in getBundleFromArgs()
684 final Uri folderListUri; in onCreateLoader() local
688 folderListUri = mFolderListUri; in onCreateLoader()
691 folderListUri = mCurrentAccount.folderListUri; in onCreateLoader()
694 folderListUri = mCurrentAccount.allFolderListUri; in onCreateLoader()
699 return new ObjectCursorLoader<>(mActivity.getActivityContext(), folderListUri, in onCreateLoader()
DNestedFolderTeaserView.java252 final Uri folderListUri = folder.childFoldersListUri; in onUpdate() local
253 if (folderListUri == null) { in onUpdate()
264 mFolderListUri = folderListUri; in onUpdate()
DSingleFolderSelectionDialog.java56 mAccount.fullFolderListUri : mAccount.folderListUri); in onCreate()
DConversationsInOutboxTipView.java114 mAccount.folderListUri, UIProvider.FOLDERS_PROJECTION, Folder.FACTORY);
DMultiFoldersSelectionDialog.java81 mAccount.fullFolderListUri : mAccount.folderListUri); in onCreate()
DFolderSelectionActivity.java188 createFolderListFragment(FolderListFragment.ofTopLevelTree(mAccount.folderListUri, in onCreate()
DAbstractActivityController.java3501 mAccount.folderListUri : defaultInbox;
/packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
DComposeActivityTest.java67 private Message getRefMessage(ContentResolver resolver, Uri folderListUri) { in getRefMessage() argument
68 Cursor foldersCursor = resolver.query(folderListUri, in getRefMessage()
99 return getRefMessage(resolver, account.folderListUri); in getRefMessage()
680 getRefMessage(context.getContentResolver(), currentAccount.folderListUri); in testReplySendingAccount0()
718 getRefMessage(context.getContentResolver(), currentAccount.folderListUri); in testReplySendingAccount1()
/packages/apps/UnifiedEmail/tests/src/com/android/mail/providers/
DAccountTests.java57 assertEquals(before.folderListUri, after.folderListUri); in testSerializeDeserialize()
/packages/apps/Email/provider_src/com/android/email/provider/
DFolderPickerActivity.java109 startPicker(uiAccount.folderListUri, headerId); in onCreate()