/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...] |
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.
|
/external/chromium_org/gpu/command_buffer/service/ |
mailbox_synchronizer.cc | 92 it->second.group->mailboxes.find(target_name); 94 mb_it != it->second.group->mailboxes.end()) { 95 it->second.group->mailboxes.erase(mb_it); 98 group->mailboxes.insert(target_name); 107 it->second.group->mailboxes.find(target_name); 108 if (mb_it != it->second.group->mailboxes.end()) 160 group->mailboxes.find(target_name); 161 if (mb_it == group->mailboxes.end()) {
|
mailbox_synchronizer.h | 67 std::set<TargetName> mailboxes; member in struct:gpu::gles2::MailboxSynchronizer::TextureGroup
|
/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...] |
/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
|
video_resource_updater.cc | 273 external_resources.mailboxes.push_back( 315 external_resources.mailboxes.push_back( 362 external_resources.mailboxes.push_back(
|
/external/chromium_org/cc/layers/ |
video_layer_impl.cc | 115 DCHECK_EQ(external_resources.mailboxes.size(), 117 for (size_t i = 0; i < external_resources.mailboxes.size(); ++i) { 119 external_resources.mailboxes[i],
|
/packages/apps/Email/src/com/android/email/service/ |
ImapService.java | 814 Cursor mailboxes = resolver.query(Mailbox.CONTENT_URI, Mailbox.ID_PROJECTION, local [all...] |
/packages/apps/Exchange/tests/src/com/android/exchange/provider/ |
MailboxUtilitiesTests.java | 73 // Set up account and various mailboxes with/without parents 86 // To make this work, we need to manually set parentKey to null for all mailboxes 93 // Fix up the database and restore the mailboxes 120 private void simulateFolderSyncChangeHandling(String accountSelector, Mailbox...mailboxes) { 121 // Run the parent key analyzer and reload the mailboxes 123 for (Mailbox mailbox: mailboxes) { 134 // Set up account and various mailboxes with/without parents 143 // Manually set parentKey to null for all mailboxes, as if an initial sync or post-upgrade 185 // Set up account and various mailboxes with/without parents 194 // Manually set parentKey to null for all mailboxes, as if an initial sync or post-upgrad [all...] |