/external/webkit/Source/WebKit2/Platform/CoreIPC/unix/ |
D | ConnectionUnix.cpp | 147 AttachmentResourceGuard(T& attachments) in AttachmentResourceGuard() argument 148 : m_attachments(attachments) in AttachmentResourceGuard() 163 Deque<Attachment> attachments; in readyReadHandler() local 167 …mentResourceGuard<Deque<Attachment>, Deque<Attachment>::iterator> attachementDisposer(attachments); in readyReadHandler() 229 attachments.append(Attachment(fileDescriptors[i], attachmentSizes[i])); in readyReadHandler() 255 …ASSERT(attachments.size() == messageInfo.isMessageBodyOOL() ? messageInfo.attachmentCount() - 1 : … in readyReadHandler() 263 if (attachments.isEmpty()) in readyReadHandler() 266 argumentDecoder = new ArgumentDecoder(messageBody, messageInfo.bodySize(), attachments); in readyReadHandler() 315 Vector<Attachment> attachments = arguments->releaseAttachments(); in sendOutgoingMessage() local 316 …ntResourceGuard<Vector<Attachment>, Vector<Attachment>::iterator> attachementDisposer(attachments); in sendOutgoingMessage() [all …]
|
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/ |
D | bug.py | 83 def attachments(self, include_obsolete=False): member in 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)
|
D | bugzilla.py | 393 attachments = self.fetch_bug(bug_id).attachments(include_obsolete=True) 394 for attachment in attachments:
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/mac/ |
D | ConnectionMac.cpp | 139 Vector<Attachment> attachments = arguments->releaseAttachments(); in sendOutgoingMessage() local 143 for (size_t i = 0; i < attachments.size(); ++i) { in sendOutgoingMessage() 144 Attachment::Type type = attachments[i].type(); in sendOutgoingMessage() 158 …attachments.append(Attachment(arguments->buffer(), arguments->bufferSize(), MACH_MSG_VIRTUAL_COPY,… in sendOutgoingMessage() 181 for (size_t i = 0; i < attachments.size(); ++i) { in sendOutgoingMessage() 182 Attachment attachment = attachments[i]; in sendOutgoingMessage() 248 Deque<Attachment> attachments; in createArgumentDecoder() local 261 attachments.append(Attachment(descriptor->port.name, descriptor->port.disposition)); in createArgumentDecoder() 265 … attachments.append(Attachment(descriptor->out_of_line.address, descriptor->out_of_line.size, in createArgumentDecoder() 285 if (attachments.isEmpty()) in createArgumentDecoder() [all …]
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
D | feeders_unittest.py | 66 attachments = [attachment1, attachment2, attachment3, attachment4] 69 attachments.sort(queue._patch_cmp) 70 self.assertEqual(attachments, expected_sort)
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | WKCAImageQueue.cpp | 87 …s, size_t width, size_t height, uint32_t pixel_format, CFDictionaryRef attachments, uint32_t flags) in registerPixelBuffer() argument 89 …e->m_imageQueue.get(), data, data_size, rowbytes, width, height, pixel_format, attachments, flags); in registerPixelBuffer()
|
D | WKCAImageQueue.h | 75 …s, size_t width, size_t height, uint32_t pixel_format, CFDictionaryRef attachments, uint32_t flags…
|
D | QTPixelBuffer.h | 81 CFDictionaryRef attachments() const;
|
D | QTPixelBuffer.cpp | 211 CFDictionaryRef QTPixelBuffer::attachments() const in attachments() function in QTPixelBuffer
|
D | MediaPlayerPrivateQuickTimeVisualContext.cpp | 898 …etainPtr<CFDictionaryRef> attachments(AdoptCF, QTCFDictionaryCreateCopyWithDataCallback(kCFAllocat… in retrieveCurrentImage() local 903 …er.bytesPerRow(), buffer.width(), buffer.height(), buffer.pixelFormatType(), attachments.get(), 0); in retrieveCurrentImage()
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
D | ArgumentDecoder.cpp | 39 …tDecoder::ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>& attachments) in ArgumentDecoder() argument 43 m_attachments.swap(attachments); in ArgumentDecoder()
|
/external/webkit/Tools/Scripts/ |
D | webkit-tools-completion.sh | 73 obsolete-attachments)
|
/external/webkit/Source/WebCore/accessibility/mac/ |
D | AccessibilityObjectMac.mm | 38 // FrameView attachments are now handled by AccessibilityScrollView,
|
D | AccessibilityObjectWrapper.mm | 591 // replaced nodes are either attachments (widgets) or images 632 … // non-zero length means textual node, zero length means replaced node (AKA "attachments" in AX) 1423 // attachments have the AXImage role, but a different subrole
|
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/ |
D | WebKitSystemInterface.h | 150 …tes, size_t width, size_t height, OSType pixel_format, CFDictionaryRef attachments, uint32_t flags…
|
/external/mesa3d/include/GLES2/ |
D | gl2ext.h | 605 …PIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); 607 …PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
|
/external/webkit/Source/ThirdParty/ANGLE/include/GLES2/ |
D | gl2ext.h | 616 …PIENTRY glDiscardFramebufferEXT (GLenum target, GLsizei numAttachments, const GLenum *attachments); 618 …PFNGLDISCARDFRAMEBUFFEREXTPROC) (GLenum target, GLsizei numAttachments, const GLenum *attachments);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/ |
D | WebEditorClientMac.mm | 103 // Omit object so no file attachments are part of the fragment.
|
/external/webkit/Tools/Scripts/webkitpy/tool/ |
D | mocktool.py | 316 for attachment in bug.attachments(include_obsolete=True):
|
/external/webkit/Source/WebCore/platform/mac/ |
D | PasteboardMac.mm | 80 … else { // Don't write RTFD to the pasteboard when the copied attributed string has no attachments. 168 // Don't write RTFD to the pasteboard when the copied attributed string has no attachments.
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
D | WebEditorClient.mm | 359 // Omit object so no file attachments are part of the fragment.
|
/external/mesa3d/docs/ |
D | VERSIONS | 1491 - removed the test for duplicated framebuffer attachments, per
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebHTMLView.mm | 745 // Omit object so no file attachments are part of the fragment. 1970 // Don't write RTFD to the pasteboard when the copied attributed string has no attachments.
|
/external/webkit/Tools/ |
D | ChangeLog-2010-05-24 | 292 - Teach bugzilla how to parse attach_date for attachments. 4346 webkit-patch can't fetch attachments on security bugs 5383 Test: https://bug-32434-attachments.webkit.org/attachment.cgi?id=44955 18871 - Add a few more attachments and bug dictionaries for use by the tests. 19234 …- Update Bug to carry a pointer back to bugzilla (attachments need to access Bugzilla for committe… 21242 … - Use fetch_bug and attachments(), patches(), etc. instead of custom fetch_*_from_bug methods. 34366 Update scm.py to add bug_ids to attachments to make error reporting nicer. 35102 obsolete-attachments BUGID Marks all attachments on a bug as obsolete.
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/de-DE/ |
D | de-DE_lexpos.utf | 2001 N "attachments" "?@-t'Et_S-m@nts"
|