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

1 2 3 4

  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bug.py 82 # Rarely do we actually want obsolete attachments
83 def attachments(self, include_obsolete=False): member in class:Bug
84 attachments = self.bug_dictionary["attachments"]
86 attachments = filter(lambda attachment:
87 not attachment["is_obsolete"], attachments)
88 return [Attachment(attachment, self) for attachment in attachments]
91 return [patch for patch in self.attachments(include_obsolete)
bugzilla.py 334 bug["attachments"] = [self._parse_attachment_element(element, bug["id"]) for element in soup.findAll('attachment')]
393 attachments = self.fetch_bug(bug_id).attachments(include_obsolete=True)
394 for attachment in attachments:
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/unix/
ConnectionUnix.cpp 147 AttachmentResourceGuard(T& attachments)
148 : m_attachments(attachments)
163 Deque<Attachment> attachments; local
167 AttachmentResourceGuard<Deque<Attachment>, Deque<Attachment>::iterator> attachementDisposer(attachments);
229 attachments.append(Attachment(fileDescriptors[i], attachmentSizes[i]));
255 ASSERT(attachments.size() == messageInfo.isMessageBodyOOL() ? messageInfo.attachmentCount() - 1 : messageInfo.attachmentCount());
263 if (attachments.isEmpty())
266 argumentDecoder = new ArgumentDecoder(messageBody, messageInfo.bodySize(), attachments);
315 Vector<Attachment> attachments = arguments->releaseAttachments(); local
316 AttachmentResourceGuard<Vector<Attachment>, Vector<Attachment>::iterator> attachementDisposer(attachments);
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
feeders_unittest.py 66 attachments = [attachment1, attachment2, attachment3, attachment4]
69 attachments.sort(queue._patch_cmp)
70 self.assertEqual(attachments, expected_sort)
  /external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
ConnectionMac.cpp 139 Vector<Attachment> attachments = arguments->releaseAttachments(); local
143 for (size_t i = 0; i < attachments.size(); ++i) {
144 Attachment::Type type = attachments[i].type();
158 attachments.append(Attachment(arguments->buffer(), arguments->bufferSize(), MACH_MSG_VIRTUAL_COPY, false));
181 for (size_t i = 0; i < attachments.size(); ++i) {
182 Attachment attachment = attachments[i];
248 Deque<Attachment> attachments; local
261 attachments.append(Attachment(descriptor->port.name, descriptor->port.disposition));
265 attachments.append(Attachment(descriptor->out_of_line.address, descriptor->out_of_line.size,
285 if (attachments.isEmpty()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
WKCAImageQueue.cpp 87 uint64_t WKCAImageQueue::registerPixelBuffer(void *data, size_t data_size, size_t rowbytes, size_t width, size_t height, uint32_t pixel_format, CFDictionaryRef attachments, uint32_t flags)
89 return wkCAImageQueueRegisterPixelBuffer(m_private->m_imageQueue.get(), data, data_size, rowbytes, width, height, pixel_format, attachments, flags);
QTPixelBuffer.h 81 CFDictionaryRef attachments() const;
WKCAImageQueue.h 75 uint64_t registerPixelBuffer(void *data, size_t data_size, size_t rowbytes, size_t width, size_t height, uint32_t pixel_format, CFDictionaryRef attachments, uint32_t flags);
QTPixelBuffer.cpp 211 CFDictionaryRef QTPixelBuffer::attachments() const function in class:QTPixelBuffer
MediaPlayerPrivateQuickTimeVisualContext.cpp 898 RetainPtr<CFDictionaryRef> attachments(AdoptCF, QTCFDictionaryCreateCopyWithDataCallback(kCFAllocatorDefault, buffer.attachments(), &QTCFDictionaryCreateWithDataCallback));
903 uint64_t imageId = m_imageQueue->registerPixelBuffer(buffer.baseAddress(), buffer.dataSize(), buffer.bytesPerRow(), buffer.width(), buffer.height(), buffer.pixelFormatType(), attachments.get(), 0);
    [all...]
  /external/webkit/Tools/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 192 * Sunny day test of adding attachments from an IMAP/POP message.
195 // Prepare a local message to add the attachments to
219 ArrayList<Part> attachments = new ArrayList<Part>(); local
220 MimeUtility.collectParts(legacyMessage, viewables, attachments);
221 LegacyConversions.updateAttachments(mProviderContext, localMessage, attachments);
223 // Read back all attachments for message and check field values
232 checkAttachment("attachment1Part", attachments.get(0), attachment,
235 checkAttachment("attachment2Part", attachments.get(1), attachment,
247 * Test that only "attachment" or "inline" attachments are captured and added.
252 // Prepare a local message to add the attachments t
313 ArrayList<Part> attachments = new ArrayList<Part>(); local
534 ArrayList<Part> attachments = new ArrayList<Part>(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 166 // a method for sending mail with attachments
167 String aSubject, String aMessage, String[] attachments) {
214 for (int i = 0; i < attachments.length; i++) {
217 FileDataSource attachment = new FileDataSource(attachments[i]);
219 File attachmentFile=new File(attachments[i]);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-javamail.jar 
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentDecoder.cpp 39 ArgumentDecoder::ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>& attachments)
43 m_attachments.swap(attachments);
229 printf("Number of Attachments: %d\n", (int)m_attachments.size());
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
MimeUtility.java 397 * "viewable" and which will be attachments.
402 * @param attachments This arraylist will be populated with all parts that appear to be
403 * attachments (including inlines)
407 ArrayList<Part> attachments) throws MessagingException {
458 collectParts(bp, viewables, attachments);
462 // it, pulling any viewables or attachments into the running list.
464 collectParts(message, viewables, attachments);
473 attachments.add(part);
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportReceiver.java 128 final ArrayList<Uri> attachments = Lists.newArrayList(bugreportUri, screenshotUri); local
129 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments);
  /packages/apps/Email/src/com/android/email/activity/
MessageCompose.java 163 * A collection of attachments the user is currently wanting to attach to this message.
173 * The attachments associated with the source attachments. Usually included in a forward.
724 mAttachmentContentView = UiUtilities.getView(this, R.id.attachments);
    [all...]
  /external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
WebKitSystemInterface.h 150 uint64_t wkCAImageQueueRegisterPixelBuffer(CAImageQueueRef iq, void *data, size_t data_size, size_t rowbytes, size_t width, size_t height, OSType pixel_format, CFDictionaryRef attachments, uint32_t flags);
  /frameworks/base/opengl/java/android/opengl/
GLES30.java     [all...]
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES30.spec 106 void glInvalidateFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments )
107 void glInvalidateSubFramebuffer ( GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height )
  /frameworks/base/core/jni/
android_opengl_GLES30.cpp 4811 GLenum *attachments = (GLenum *) 0; local
4853 GLenum *attachments = (GLenum *) 0; local
4879 GLenum *attachments = (GLenum *) 0; local
4925 GLenum *attachments = (GLenum *) 0; local
    [all...]
  /frameworks/base/libs/hwui/
LayerRenderer.cpp 372 const GLenum attachments[] = { GL_COLOR_ATTACHMENT0 }; local
373 glDiscardFramebufferEXT(GL_FRAMEBUFFER, 1, attachments);
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 154 * Copy attachments from MimeMessage to provider Message.
157 * @param localMessage the attachments will be built against this message
158 * @param attachments the attachments to add
162 ArrayList<Part> attachments) throws MessagingException, IOException {
164 for (Part attachmentPart : attachments) {
172 * This will skip adding attachments if they are already found in the attachments table.
173 * The heuristic for this will fail (false-positive) if two identical attachments are
175 * TODO: Fix that, by (elsewhere) simulating an mLocation value based on the attachments
    [all...]
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadList.java 728 ArrayList<Parcelable> attachments = new ArrayList<Parcelable>();
734 attachments.add(uri);
739 intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, attachments);

Completed in 485 milliseconds

1 2 3 4