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

12

/external/webkit/WebCore/accessibility/mac/
H A DAccessibilityObjectMac.mm37 NSView* attachment = [wrapper() attachmentView];
38 if (!attachment)
41 return [attachment accessibilityIsIgnored];
/external/webkit/WebKitTools/QueueStatusServer/handlers/
H A Dstatusbubble.py32 from model.attachment import Attachment
37 attachment = Attachment(int(attachment_id))
40 "summary" : attachment.summary()
H A Ddashboard.py32 from model.attachment import Attachment
39 "summaries" : [attachment.summary() for attachment in attachments],
H A Dupdatestatus.py33 from model.attachment import Attachment
/external/webkit/WebKit/win/Interfaces/
H A DIWebHTTPURLResponse.idl43 HRESULT isAttachment([out, retval] BOOL* attachment);
/external/webkit/WebKitTools/Scripts/webkitpy/
H A Dbugzilla_unittest.py65 <attachment
87 </attachment>
94 'url' : "https://bugs.webkit.org/attachment.cgi?id=33721",
155 <attachment
179 </attachment>
191 'url' : "https://bugs.webkit.org/attachment.cgi?id=45548",
217 attachment_element = soup.find("attachment")
218 attachment = bugzilla._parse_attachment_element(attachment_element, self._expected_example_attachment_parsing['bug_id'])
219 self.assertTrue(attachment)
220 self._assert_dictionaries_equal(attachment, sel
[all...]
H A Dbugzilla.py123 log("Warning, attachment %s on bug %s has invalid %s (%s)" % (
157 attachments = filter(lambda attachment:
158 not attachment["is_obsolete"], attachments)
159 return [Attachment(attachment, self) for attachment in attachments]
213 attachment_href = re.compile("attachment.cgi\?id=\d+&action=review")
375 attachment,
379 attachment[flag_name] = flag['status']
381 attachment[result_key] = flag['setter']
384 attachment
[all...]
H A Dmock_bugzillatool.py249 for attachment in bug.attachments(include_obsolete=True):
250 if attachment.id() == int(attachment_id):
251 return attachment
/external/webkit/WebKit/mac/Misc/
H A DWebNSAttributedStringExtras.mm140 NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithFileWrapper:fileWrapper];
141 [string appendAttributedString:[NSAttributedString attributedStringWithAttachment:attachment]];
142 [attachment release];
H A DWebNSPasteboardExtras.mm187 NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithFileWrapper:wrapper];
189 NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attachment];
190 [attachment release];
/external/webkit/WebKit/win/
H A DWebURLResponse.h84 /* [retval][out] */ BOOL *attachment);
H A DWebURLResponse.cpp395 /* [retval][out] */ BOOL *attachment)
397 *attachment = m_response.isAttachment();
394 isAttachment( BOOL *attachment) argument
/external/webkit/WebCore/rendering/style/
H A DFillLayer.h70 EFillAttachment attachment() const { return static_cast<EFillAttachment>(m_attachment); } function in struct:WebCore::FillLayer
96 void setAttachment(EFillAttachment attachment) { m_attachment = attachment; m_attachmentSet = true; } argument
/external/webkit/WebCore/html/canvas/
H A DWebGLRenderingContext.h126 void framebufferRenderbuffer(unsigned long target, unsigned long attachment, unsigned long renderbuffertarget, WebGLRenderbuffer*, ExceptionCode& ec);
127 void framebufferTexture2D(unsigned long target, unsigned long attachment, unsigned long textarget, WebGLTexture*, long level, ExceptionCode& ec);
142 WebGLGetInfo getFramebufferAttachmentParameter(unsigned long target, unsigned long attachment, unsigned long pname, ExceptionCode&);
H A DWebGLRenderingContext.cpp778 void WebGLRenderingContext::framebufferRenderbuffer(unsigned long target, unsigned long attachment, unsigned long renderbuffertarget, WebGLRenderbuffer* buffer, ExceptionCode& ec) argument
792 m_context->framebufferRenderbuffer(target, attachment, renderbuffertarget, buffer);
796 void WebGLRenderingContext::framebufferTexture2D(unsigned long target, unsigned long attachment, unsigned long textarget, WebGLTexture* texture, long level, ExceptionCode& ec) argument
810 m_context->framebufferTexture2D(target, attachment, textarget, texture, level);
893 WebGLGetInfo WebGLRenderingContext::getFramebufferAttachmentParameter(unsigned long target, unsigned long attachment, unsigned long pname, ExceptionCode& ec) argument
897 || (attachment != GraphicsContext3D::COLOR_ATTACHMENT0
898 && attachment != GraphicsContext3D::DEPTH_ATTACHMENT
899 && attachment != GraphicsContext3D::STENCIL_ATTACHMENT)
911 m_context->getFramebufferAttachmentParameteriv(target, attachment, pname, &value);
919 m_context->getFramebufferAttachmentParameteriv(target, attachment, GraphicsContext3
[all...]
H A DWebGLRenderingContext.idl527 void framebufferRenderbuffer(in unsigned long target, in unsigned long attachment, in unsigned long renderbuffertarget, in WebGLRenderbuffer renderbuffer) raises(DOMException);
528 void framebufferTexture2D(in unsigned long target, in unsigned long attachment, in unsigned long textarget, in WebGLTexture texture, in long level) raises(DOMException);
548 // any getFramebufferAttachmentParameter(in unsigned long target, in unsigned long attachment, in unsigned long pname) raises(DOMException);
/external/webkit/WebCore/css/
H A DCSSPropertyNames.in12 background-attachment
216 -webkit-mask-attachment
/external/webkit/WebCore/platform/mac/
H A DPasteboardMac.mm283 NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithFileWrapper:wrapper];
285 NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attachment];
286 [attachment release];
/external/webkit/WebCore/platform/graphics/
H A DGraphicsContext3D.h466 void framebufferRenderbuffer(unsigned long target, unsigned long attachment, unsigned long renderbuffertarget, WebGLRenderbuffer*);
467 void framebufferTexture2D(unsigned long target, unsigned long attachment, unsigned long textarget, WebGLTexture*, long level);
486 void getFramebufferAttachmentParameteriv(unsigned long target, unsigned long attachment, unsigned long pname, int* value);
/external/webkit/WebCore/platform/graphics/mac/
H A DGraphicsContext3DMac.cpp476 void GraphicsContext3D::framebufferRenderbuffer(unsigned long target, unsigned long attachment, unsigned long renderbuffertarget, WebGLRenderbuffer* buffer) argument
479 ::glFramebufferRenderbufferEXT(target, attachment, renderbuffertarget, buffer ? (GLuint) buffer->object() : 0);
482 void GraphicsContext3D::framebufferTexture2D(unsigned long target, unsigned long attachment, unsigned long textarget, WebGLTexture* texture, long level) argument
485 ::glFramebufferTexture2DEXT(target, attachment, textarget, texture ? (GLuint) texture->object() : 0, level);
986 void GraphicsContext3D::getFramebufferAttachmentParameteriv(unsigned long target, unsigned long attachment, unsigned long pname, int* value) argument
989 ::glGetFramebufferAttachmentParameterivEXT(target, attachment, pname, value);
/external/webkit/WebCore/bindings/js/
H A DJSWebGLRenderingContextCustom.cpp207 unsigned attachment = args.at(1).toInt32(exec); local
213 WebGLGetInfo info = context->getFramebufferAttachmentParameter(target, attachment, pname, ec);
/external/webkit/WebCore/bindings/v8/custom/
H A DV8WebGLRenderingContextCustom.cpp309 unsigned attachment = toInt32(args[1], ok); local
319 WebGLGetInfo info = context->getFramebufferAttachmentParameter(target, attachment, pname, ec);
/external/webkit/WebCore/rendering/
H A DRenderBoxModelObject.cpp475 bool clippedWithLocalScrolling = hasOverflowClip() && bgLayer->attachment() == LocalBackgroundAttachment;
687 bool fixedAttachment = fillLayer->attachment() == FixedBackgroundAttachment;
692 // property "background-attachment: fixed" because it may result in rendering
/external/webkit/WebKit/chromium/src/
H A DGraphicsContext3D.cpp1590 unsigned long attachment,
1595 glGetFramebufferAttachmentParameterivEXT(target, attachment, pname, value);
1589 getFramebufferAttachmentParameteriv(unsigned long target, unsigned long attachment, unsigned long pname, int* value) argument
/external/qemu/distrib/sdl-1.2.12/include/
H A DSDL_opengl.h6529 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE1DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
6530 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE2DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level);
6531 typedef void (APIENTRYP PFNGLFRAMEBUFFERTEXTURE3DEXTPROC) (GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset);
6532 typedef void (APIENTRYP PFNGLFRAMEBUFFERRENDERBUFFEREXTPROC) (GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer);
6533 typedef void (APIENTRYP PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVEXTPROC) (GLenum target, GLenum attachment, GLenum pname, GLint *params);

Completed in 394 milliseconds

12