OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mailboxes
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Email/src/org/apache/james/mime4j/field/address/
MailboxList.java
31
private ArrayList<Address>
mailboxes
;
field in class:MailboxList
34
* @param
mailboxes
An ArrayList that contains only Mailbox objects.
35
* @param dontCopy true iff it is not possible for the
mailboxes
ArrayList to be modified by someone else.
37
public MailboxList(ArrayList<Address>
mailboxes
, boolean dontCopy) {
38
if (
mailboxes
!= null)
39
this.
mailboxes
= (dontCopy ?
mailboxes
: new ArrayList<Address>(
mailboxes
));
41
this.
mailboxes
= new ArrayList<Address>(0);
48
return
mailboxes
.size();
[
all
...]
Group.java
25
* A named group of zero or more
mailboxes
.
35
* @param
mailboxes
The
mailboxes
in this group.
37
public Group(String name, MailboxList
mailboxes
) {
39
this.mailboxList =
mailboxes
;
50
* Returns the
mailboxes
in this group.
/packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java
322
static void createHierarchy(HashMap<String, ImapFolder>
mailboxes
) {
323
Set<String> pathnames =
mailboxes
.keySet();
325
final ImapFolder folder =
mailboxes
.get(path);
331
final ImapFolder parentFolder =
mailboxes
.get(parentPath);
389
HashMap<String, ImapFolder>
mailboxes
= new HashMap<String, ImapFolder>();
local
418
mailboxes
.put(folderName, folder);
423
mailboxes
.put(ImapConstants.INBOX, (ImapFolder)newFolder);
424
createHierarchy(
mailboxes
);
425
saveMailboxList(mContext,
mailboxes
);
426
return
mailboxes
.values().toArray(new Folder[] {})
[
all
...]
/packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/
MailboxUtilitiesTests.java
70
// Set up account and various
mailboxes
with/without parents
83
// To make this work, we need to manually set parentKey to null for all
mailboxes
90
// Fix up the database and restore the
mailboxes
116
private void simulateFolderSyncChangeHandling(String accountSelector, Mailbox...
mailboxes
) {
117
// Run the parent key analyzer and reload the
mailboxes
119
for (Mailbox mailbox:
mailboxes
) {
130
// Set up account and various
mailboxes
with/without parents
139
// Manually set parentKey to null for all
mailboxes
, as if an initial sync or post-upgrade
181
// Set up account and various
mailboxes
with/without parents
190
// Manually set parentKey to null for all
mailboxes
, as if an initial sync or post-upgrad
[
all
...]
/packages/apps/Exchange/tests/src/com/android/exchange/provider/
MailboxUtilitiesTests.java
70
// Set up account and various
mailboxes
with/without parents
83
// To make this work, we need to manually set parentKey to null for all
mailboxes
90
// Fix up the database and restore the
mailboxes
116
private void simulateFolderSyncChangeHandling(String accountSelector, Mailbox...
mailboxes
) {
117
// Run the parent key analyzer and reload the
mailboxes
119
for (Mailbox mailbox:
mailboxes
) {
130
// Set up account and various
mailboxes
with/without parents
139
// Manually set parentKey to null for all
mailboxes
, as if an initial sync or post-upgrade
181
// Set up account and various
mailboxes
with/without parents
190
// Manually set parentKey to null for all
mailboxes
, as if an initial sync or post-upgrad
[
all
...]
/packages/apps/Email/src/com/android/email/
MessagingController.java
264
// Step 1: Get remote
mailboxes
272
// Step 2: Get local
mailboxes
297
// Never, ever delete special
mailboxes
1223
Cursor
mailboxes
= resolver.query(Mailbox.CONTENT_URI, Mailbox.ID_PROJECTION,
local
[
all
...]
Completed in 541 milliseconds