/packages/apps/UnifiedEmail/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...] |
/external/chromium_org/gpu/command_buffer/service/ |
mailbox_synchronizer.h | 67 std::set<TargetName> mailboxes; member in struct:gpu::gles2::MailboxSynchronizer::TextureGroup
|
/external/chromium_org/cc/resources/ |
video_resource_updater.h | 31 // Specifies what type of data is contained in the mailboxes, as well as how 32 // many mailboxes will be present. 52 std::vector<TextureMailbox> mailboxes; member in class:cc::VideoFrameExternalResources
|
/packages/apps/Email/src/com/android/email/mail/store/ |
ImapStore.java | 302 static void createHierarchy(HashMap<String, ImapFolder> mailboxes) { 303 Set<String> pathnames = mailboxes.keySet(); 305 final ImapFolder folder = mailboxes.get(path); 312 final ImapFolder parentFolder = mailboxes.get(parentPath); 377 HashMap<String, ImapFolder> mailboxes = new HashMap<String, ImapFolder>(); local 407 mailboxes.put(folderName, folder); 416 mailboxes.put(ImapConstants.INBOX, newFolder); 418 createHierarchy(mailboxes); 419 saveMailboxList(mContext, mailboxes); 420 return mailboxes.values().toArray(new Folder[] {}) [all...] |
/packages/apps/Email/src/com/android/email/service/ |
ImapService.java | 814 Cursor mailboxes = resolver.query(Mailbox.CONTENT_URI, Mailbox.ID_PROJECTION, local [all...] |