Searched refs:attachment (Results 1 - 25 of 68) sorted by relevance

123

/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
H A D__init__.py8 from .attachment import Attachment
H A Dbug.py31 from .attachment import Attachment
86 attachments = filter(lambda attachment:
87 not attachment["is_obsolete"], attachments)
88 return [Attachment(attachment, self) for attachment in attachments]
H A Dbugzilla.py41 from .attachment import Attachment
138 attachment_href = re.compile("attachment.cgi\?id=\d+&action=review")
265 attachment,
269 attachment[flag_name] = flag['status']
271 attachment[result_key] = flag['setter']
299 attachment = {}
300 attachment['bug_id'] = bug_id
301 attachment['is_obsolete'] = (element.has_key('isobsolete') and element['isobsolete'] == "1")
302 attachment['is_patch'] = (element.has_key('ispatch') and element['ispatch'] == "1")
303 attachment['i
[all...]
H A Dbugzilla_unittest.py43 <attachment
65 </attachment>
73 'url' : "https://bugs.webkit.org/attachment.cgi?id=33721",
134 <attachment
158 </attachment>
184 'url' : "https://bugs.webkit.org/attachment.cgi?id=45548",
272 attachment_element = soup.find("attachment")
273 attachment = bugzilla._parse_attachment_element(attachment_element, self._expected_example_attachment_parsing['bug_id'])
274 self.assertTrue(attachment)
275 self._assert_dictionaries_equal(attachment, sel
[all...]
/external/webkit/Tools/QueueStatusServer/handlers/
H A Ddashboard.py34 from model.attachment import Attachment
43 def _build_bubble(self, attachment, queue):
44 queue_status = attachment.status_for_queue(queue)
46 "status_class": attachment.state_from_queue_status(queue_status) if queue_status else "none",
51 def _build_row(self, attachment):
53 "bug_id": attachment.bug_id(),
54 "attachment_id": attachment.id,
55 "bubbles": [self._build_bubble(attachment, queue) for queue in self._ordered_queues],
62 "rows": [self._build_row(attachment) for attachment i
[all...]
H A Dstatusbubble.py34 from model.attachment import Attachment
42 def _build_bubble(self, queue, attachment):
43 queue_status = attachment.status_for_queue(queue)
46 "attachment_id": attachment.id,
47 "queue_position": attachment.position_in_queue(queue),
48 "state": attachment.state_from_queue_status(queue_status) if queue_status else "none",
54 attachment = Attachment(int(attachment_id))
55 bubbles = [self._build_bubble(queue, attachment) for queue in self._queues_to_display]
H A Dsubmittoews.py33 from model.attachment import Attachment
41 def _should_add_to_ews_queue(self, queue, attachment):
46 latest_status = attachment.status_for_queue(queue)
56 def _add_attachment_to_ews_queues(self, attachment):
58 if self._should_add_to_ews_queue(queue, attachment):
59 queue.work_items().add_work_item(attachment.id)
63 attachment = Attachment(attachment_id)
64 self._add_attachment_to_ews_queues(attachment)
H A Dreleasepatch.py33 from model.attachment import Attachment
50 attachment = Attachment(attachment_id)
51 last_status = attachment.status_for_queue(queue)
H A Dstatusbubble_unittest.py51 attachment = MockAttachment()
52 bubble_dict = bubble._build_bubble(queue, attachment)
H A Dupdatestatus.py34 from model.attachment import Attachment
/external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
H A DMachPort.h56 Attachment attachment; local
57 if (!decoder->decode(attachment))
60 p.m_port = attachment.port();
61 p.m_disposition = attachment.disposition();
H A DConnectionMac.cpp182 Attachment attachment = attachments[i]; local
185 switch (attachment.type()) {
187 descriptor->port.name = attachment.port();
188 descriptor->port.disposition = attachment.disposition();
194 descriptor->out_of_line.address = attachment.address();
195 descriptor->out_of_line.size = attachment.size();
196 descriptor->out_of_line.copy = attachment.copyOptions();
197 descriptor->out_of_line.deallocate = attachment.deallocate();
247 // Build attachment list
252 // as an attachment, sinc
[all...]
/external/webkit/Source/WebKit2/Shared/mac/
H A DUpdateChunk.cpp84 CoreIPC::Attachment attachment; local
85 if (!decoder->decode(attachment))
88 chunk.m_size = attachment.size();
89 chunk.m_data = reinterpret_cast<uint8_t*>(attachment.address());
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebHTTPURLResponse.idl43 HRESULT isAttachment([out, retval] BOOL* attachment);
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DAttachment.cpp67 bool Attachment::decode(ArgumentDecoder* decoder, Attachment& attachment) argument
69 if (!decoder->removeAttachment(attachment))
H A DArgumentEncoder.cpp147 void ArgumentEncoder::addAttachment(const Attachment& attachment) argument
149 m_attachments.append(attachment);
H A DArgumentDecoder.cpp216 bool ArgumentDecoder::removeAttachment(Attachment& attachment) argument
221 attachment = m_attachments.takeFirst();
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dfeeders_unittest.py41 expected_stderr = u"""Warning, attachment 128 on bug 42 has invalid committer (non-committer@example.com)
42 Warning, attachment 128 on bug 42 has invalid committer (non-committer@example.com)
43 MOCK setting flag 'commit-queue' to '-' on attachment '128' with comment 'Rejecting attachment 128 from commit-queue.' and additional comment 'non-committer@example.com does not have committer permissions according to http://trac.webkit.org/browser/trunk/Tools/Scripts/webkitpy/common/config/committers.py.
54 attachment = Mock()
55 attachment.is_rollout = lambda: is_rollout
56 attachment.attach_date = lambda: attach_date
57 return attachment
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLFramebuffer.cpp38 // This function is only for depth/stencil/depth_stencil attachment.
85 void WebGLFramebuffer::setAttachment(GC3Denum attachment, GC3Denum texTarget, WebGLTexture* texture, GC3Dint level) argument
91 switch (attachment) {
113 void WebGLFramebuffer::setAttachment(GC3Denum attachment, WebGLRenderbuffer* renderbuffer) argument
119 switch (attachment) {
137 WebGLObject* WebGLFramebuffer::getAttachment(GC3Denum attachment) const
141 switch (attachment) {
155 void WebGLFramebuffer::removeAttachment(WebGLObject* attachment) argument
159 if (attachment == m_colorAttachment.get())
161 else if (attachment
[all...]
H A DWebGLFramebuffer.h45 void setAttachment(GC3Denum attachment, GC3Denum texTarget, WebGLTexture*, GC3Dint level);
46 void setAttachment(GC3Denum attachment, WebGLRenderbuffer*);
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dpostdiffforrevert.py41 webkit-patch land-attachment ATTACHMENT_ID --ignore-builders\n\n\
42 where ATTACHMENT_ID is the ID of this attachment."
/external/webkit/Source/WebKit2/Platform/unix/
H A DSharedMemoryUnix.cpp81 CoreIPC::Attachment attachment; local
82 if (!decoder->decode(attachment))
85 handle.adoptFromAttachment(attachment.releaseFileDescriptor(), attachment.size());
/external/chromium/chrome/browser/
H A Dbug_report_util.cc343 userfeedback::ProductSpecificBinaryData attachment; local
344 attachment.set_mime_type(kBZip2MimeType);
345 attachment.set_name(kLogsAttachmentName);
346 attachment.set_data(std::string(zipped_logs_data, zipped_logs_length));
347 *(feedback_data.add_product_specific_binary_data()) = attachment;
/external/webkit/Source/WebKit/win/
H A DWebURLResponse.h81 /* [retval][out] */ BOOL *attachment);
/external/webkit/Source/WebCore/rendering/style/
H A DFillLayer.h71 EFillAttachment attachment() const { return static_cast<EFillAttachment>(m_attachment); } function in class:WebCore::FillLayer
98 void setAttachment(EFillAttachment attachment) { m_attachment = attachment; m_attachmentSet = true; } argument

Completed in 294 milliseconds

123