/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.
|
Address.java | 26 * This includes groups and mailboxes.
35 * Adds any mailboxes represented by this address
46 * Adds any mailboxes represented by this address
|
AddressList.java | 65 * Returns a flat list of all mailboxes represented
70 // in the common case, all addresses are mailboxes
|
/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(
|
/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...] |
/packages/apps/Email/emailsync/src/com/android/emailsync/ |
EmailSyncAlarmReceiver.java | 44 * 5) ESAR goes through all change and deletion records and compiles a list of mailboxes which have 46 * 6) ESAR calls SyncManager to start syncs of those mailboxes 77 // Keep track of which mailboxes to notify; we'll only notify each one once 93 // Keep track of which mailboxes to notify; we'll only notify each one once
|
/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
|
mailbox_manager.h | 74 // multiple mailboxes per texture, but one texture per mailbox. We keep an
|
mailbox_manager_unittest.cc | 118 // Still available under all mailboxes. 122 // Destroy should cleanup all mailboxes. 464 // TODO: same texture, multiple mailboxes
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/ |
Mailbox.java | 47 * Sync extras key when syncing one or more mailboxes to specify how many 48 * mailboxes are included in the extra. 52 * Sync extras key pattern when syncing one or more mailboxes to specify 121 LogUtils.w(Logging.LOG_TAG, "Mailboxes specified in a push only sync"); 124 LogUtils.w(Logging.LOG_TAG, "Mailboxes specified in an account only sync"); 142 LogUtils.w(Logging.LOG_TAG, "Mailboxes specified in an account only sync"); 153 LogUtils.w(Logging.LOG_TAG, "Mailboxes specified in a push only sync"); 264 // Sentinel for PARENT_KEY. Use NO_MAILBOX for toplevel mailboxes (i.e. no parents). 278 * Selection for mailboxes that should receive push for an account. A mailbox should receive 286 /** Selection for mailboxes that say they want to sync, plus outbox, for an account. * [all...] |
MailboxUtilities.java | 68 // Mark parent mailboxes as parents & add parent key to children 129 * mailboxes to be acted upon, e.g. accountKey IN (1, 2), accountKey = 12, etc. 135 // The selection we'll use to find uninitialized parent key mailboxes 138 // We'll loop through mailboxes with an uninitialized parent key 158 // Any mailboxes without a parent key should have parentKey set to -1 (no parent) 194 * Check that we didn't leave the account's mailboxes in a (possibly) inconsistent state 197 * @param accountId the account whose mailboxes are to be checked 208 // Set all account mailboxes to uninitialized parent key
|
/external/chromium_org/content/renderer/media/ |
renderer_gpu_video_accelerator_factories.h | 59 // Creates textures and produces them into mailboxes. Returns a sync point to 60 // wait on before using the mailboxes, or 0 on failure.
|
/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/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/Exchange/src/com/android/exchange/eas/ |
EasPing.java | 148 // Get the mailboxes that need push notifications. 152 throw new IllegalStateException("Could not read mailboxes"); 169 throw new IOException("No mailboxes want push"); 399 // Ask the EmailSyncAdapter to sync all of these mailboxes, whether they're regular 400 // mailboxes or calendar or contacts.
|
/packages/apps/Email/emailcommon/res/values/ |
strings.xml | 20 to distinguish the special mailboxes. In the past there was a notion of this being
|
/packages/apps/Email/src/com/android/email/service/ |
EmailServiceStub.java | 288 // Step 0: Make sure the default system mailboxes exist. 299 // Step 1: Get remote mailboxes 307 // Step 2: Get local mailboxes 332 // Never, ever delete special mailboxes
|
PopImapSyncAdapterService.java | 88 // TODO: actually use a sync flag when creating the mailboxes. Right now we use an 228 // TODO: IMAP may eventually want to allow multiple auto-sync mailboxes.
|
/external/bluetooth/bluedroid/gki/common/ |
gki.h | 42 ** Mailbox definitions. Each task has 4 mailboxes that are used to 55 ** There are 4 reserved events used to signal messages rcvd in task mailboxes.
|
/external/chromium_org/content/common/gpu/client/ |
gpu_channel_host.h | 211 // Gets mailboxes from the pool, and return the number of mailboxes to ask
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/ |
DrawingBuffer.h | 208 // All of the mailboxes that this DrawingBuffer has ever created. 210 // Mailboxes that were released by the compositor and can be used again by this DrawingBuffer.
|
/packages/apps/Email/src/com/android/email/mail/ |
Store.java | 147 * Updates the local list of mailboxes according to what is located on the remote server. 148 * <em>Note: This does not perform folder synchronization and it will not remove mailboxes
|