HomeSort by relevance Sort by last modified time
    Searched refs:attachments (Results 1 - 20 of 20) sorted by null

  /external/webkit/WebKitTools/QueueStatusServer/handlers/
dashboard.py 36 attachments = Attachment.recent(limit=25)
39 "summaries" : [attachment.summary() for attachment in attachments],
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
ViewResultsActivity.java 80 ArrayList<Parcelable> attachments = new ArrayList<Parcelable>(); local
84 attachments.add(Uri.fromFile(new File(filename)));
87 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments);
  /external/webkit/WebKitTools/Scripts/
webkit-tools-completion.sh 53 __webkit-patch_generate_reply "--help apply-from-bug bugs-to-commit commit-message land land-from-bug obsolete-attachments patches-to-commit post upload tree-status rollout reviewed-patches"
73 obsolete-attachments)
  /packages/apps/Email/tests/src/com/android/email/
LegacyConversionsTests.java 206 * Sunny day test of adding attachments from an IMAP/POP message.
209 // Prepare a local message to add the attachments to
233 ArrayList<Part> attachments = new ArrayList<Part>(); local
234 MimeUtility.collectParts(legacyMessage, viewables, attachments);
235 LegacyConversions.updateAttachments(mProviderContext, localMessage, attachments, false);
237 // Read back all attachments for message and check field values
246 checkAttachment("attachment1Part", attachments.get(0), attachment);
248 checkAttachment("attachment2Part", attachments.get(1), attachment);
259 * Test that attachments aren't re-added in the DB. This supports the "partial download"
263 // Prepare a local message to add the attachments t
274 ArrayList<Part> attachments = new ArrayList<Part>(); local
310 ArrayList<Part> attachments = new ArrayList<Part>(); local
549 ArrayList<Part> attachments = new ArrayList<Part>(); local
    [all...]
  /packages/apps/Email/src/com/android/email/mail/internet/
MimeUtility.java 377 * as to which of it's children will be "viewable" and which will be attachments.
378 * The method recursively sorts the viewables and attachments into seperate
382 * @param attachments
386 ArrayList<Part> attachments) throws MessagingException {
410 collectParts(mp.getBodyPart(i), viewables, attachments); local
415 * it, pulling any viewables or attachments into the running list.
419 collectParts(message, viewables, attachments);
439 attachments.add(part);
  /external/webkit/WebKitTools/Scripts/webkitpy/
bugzilla.py 153 # Rarely do we actually want obsolete attachments
154 def attachments(self, include_obsolete=False): member in class:Bug
155 attachments = self.bug_dictionary["attachments"]
157 attachments = filter(lambda attachment:
158 not attachment["is_obsolete"], attachments)
159 return [Attachment(attachment, self) for attachment in attachments]
162 return [patch for patch in self.attachments(include_obsolete)
409 bug["attachments"] = [self._parse_attachment_element(element, bug["id"]) for element in soup.findAll('attachment')]
456 attachments = self.fetch_bug(bug_id).attachments(include_obsolete=True
    [all...]
mock_bugzillatool.py 149 "attachments": [_patch1, _patch2],
157 "attachments": [_patch3],
165 "attachments": [_patch7],
173 "attachments": [_patch4, _patch5, _patch6],
249 for attachment in bug.attachments(include_obsolete=True):
  /packages/apps/Email/src/com/android/email/mail/store/
LocalStore.java 78 * 20 1.5 Added content_id column to attachments table.
152 mDb.execSQL("DROP TABLE IF EXISTS attachments");
153 mDb.execSQL("CREATE TABLE attachments (id INTEGER PRIMARY KEY, message_id INTEGER,"
166 mDb.execSQL("CREATE TRIGGER delete_message BEFORE DELETE ON messages BEGIN DELETE FROM attachments WHERE old.id = message_id; END;");
179 * Upgrade 19 to 20: add content_id to attachments table
181 mDb.execSQL("ALTER TABLE attachments ADD COLUMN content_id TEXT;");
362 File[] attachments = mAttachmentsDir.listFiles(); local
363 for (File attachment : attachments) {
383 * Report # of attachments (for migration estimates only - catches all exceptions and
388 File[] attachments = mAttachmentsDir.listFiles() local
1179 ArrayList<Part> attachments = new ArrayList<Part>(); local
1253 ArrayList<Part> attachments = new ArrayList<Part>(); local
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageCompose.java 138 * be processed on any subsequent loads. This protects us from adding attachments that
470 mAttachments = (LinearLayout)findViewById(R.id.attachments);
680 protected void onPostExecute(Attachment[] attachments) {
681 if (attachments == null) {
684 for (Attachment attachment : attachments) {
846 Attachment[] attachments = new Attachment[count]; local
867 final Attachment[] attachments = getAttachmentsFromUI(); local
882 final Attachment[] attachments = getAttachmentsFromUI(); local
    [all...]
UpgradeAccounts.java 462 * 1 (account) + # folders + # messages + # attachments
515 // for all other folders, delete the folder (and its messages & attachments)
622 // process local (outgoing) attachments here
635 // Now handle any remaining folders. For incoming folders we skip attachments, as they
658 * @param localAttachments true if the attachments refer to local data (to be sent)
691 // Main case for converting real messages with bodies & attachments
698 ArrayList<Part> attachments = new ArrayList<Part>(); local
699 MimeUtility.collectParts(oldMessage, viewables, attachments);
704 // convert attachments
708 LegacyConversions.updateAttachments(context, newMessage, attachments,
    [all...]
MessageView.java 360 mAttachments = (LinearLayout) findViewById(R.id.attachments);
    [all...]
  /packages/apps/Email/src/com/android/email/
MessagingController.java 79 * pieces with attachments being left off completely and downloaded on demand.
806 ArrayList<Part> attachments = new ArrayList<Part>(); local
872 ArrayList<Part> attachments = new ArrayList<Part>(); local
978 ArrayList<Part> attachments = new ArrayList<Part>(); local
    [all...]
LegacyConversions.java 259 * Copy attachments from MimeMessage to provider Message.
262 * @param localMessage the attachments will be built against this message
263 * @param attachments the attachments to add
264 * @param upgrading if true, we are upgrading a local account - handle attachments differently
268 ArrayList<Part> attachments, boolean upgrading) throws MessagingException, IOException {
270 for (Part attachmentPart : attachments) {
278 * This will skip adding attachments if they are already found in the attachments table.
279 * The heuristic for this will fail (false-positive) if two identical attachments ar
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
ImapStoreUnitTests.java 877 ArrayList<Part> attachments = new ArrayList<Part>(); local
    [all...]
LocalStoreUnitTests.java 115 // Delete any attachments we dribbled out
117 File[] attachments = attachmentsDir.listFiles(); local
118 for (File attachment : attachments) {
124 // Delete attachments dir
    [all...]
  /frameworks/base/opengl/include/GLES2/
gl2ext.h 618 GL_APICALL void GL_APIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments);
620 typedef void (GL_APIENTRYP PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
    [all...]
  /frameworks/base/opengl/include/GLES/
glext.h     [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java 687 * Also, attachments when we get there...
1737 Attachment[] attachments = new Attachment[count]; local
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 409 // Message with attachments and body
422 // Now check the attachments; there should be three and they should match name and size
448 // Message with attachments but no body
461 // Now check the attachments; there should be three and they should match name and size
489 Attachment[] attachments = local
491 int size = attachments.length;
494 ProviderTestUtils.assertAttachmentEqual("save-message4", atts.get(i), attachments[i]);
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 274 milliseconds