/external/webkit/WebCore/accessibility/mac/ |
H A D | AccessibilityObjectMac.mm | 37 NSView* attachment = [wrapper() attachmentView]; 38 if (!attachment) 41 return [attachment accessibilityIsIgnored];
|
/external/webkit/WebKitTools/QueueStatusServer/handlers/ |
H A D | statusbubble.py | 32 from model.attachment import Attachment 37 attachment = Attachment(int(attachment_id)) 40 "summary" : attachment.summary()
|
H A D | dashboard.py | 32 from model.attachment import Attachment 39 "summaries" : [attachment.summary() for attachment in attachments],
|
H A D | updatestatus.py | 33 from model.attachment import Attachment
|
/external/webkit/WebKit/win/Interfaces/ |
H A D | IWebHTTPURLResponse.idl | 43 HRESULT isAttachment([out, retval] BOOL* attachment);
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
H A D | bugzilla_unittest.py | 65 <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 D | bugzilla.py | 123 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 D | mock_bugzillatool.py | 249 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 D | WebNSAttributedStringExtras.mm | 140 NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithFileWrapper:fileWrapper]; 141 [string appendAttributedString:[NSAttributedString attributedStringWithAttachment:attachment]]; 142 [attachment release];
|
H A D | WebNSPasteboardExtras.mm | 187 NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithFileWrapper:wrapper]; 189 NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attachment]; 190 [attachment release];
|
/external/webkit/WebKit/win/ |
H A D | WebURLResponse.h | 84 /* [retval][out] */ BOOL *attachment);
|
H A D | WebURLResponse.cpp | 395 /* [retval][out] */ BOOL *attachment) 397 *attachment = m_response.isAttachment(); 394 isAttachment( BOOL *attachment) argument
|
/external/webkit/WebCore/rendering/style/ |
H A D | FillLayer.h | 70 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 D | WebGLRenderingContext.h | 126 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 D | WebGLRenderingContext.cpp | 778 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 D | WebGLRenderingContext.idl | 527 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 D | CSSPropertyNames.in | 12 background-attachment 216 -webkit-mask-attachment
|
/external/webkit/WebCore/platform/mac/ |
H A D | PasteboardMac.mm | 283 NSTextAttachment *attachment = [[NSTextAttachment alloc] initWithFileWrapper:wrapper]; 285 NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attachment]; 286 [attachment release];
|
/external/webkit/WebCore/platform/graphics/ |
H A D | GraphicsContext3D.h | 466 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 D | GraphicsContext3DMac.cpp | 476 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 D | JSWebGLRenderingContextCustom.cpp | 207 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 D | V8WebGLRenderingContextCustom.cpp | 309 unsigned attachment = toInt32(args[1], ok); local 319 WebGLGetInfo info = context->getFramebufferAttachmentParameter(target, attachment, pname, ec);
|
/external/webkit/WebCore/rendering/ |
H A D | RenderBoxModelObject.cpp | 475 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 D | GraphicsContext3D.cpp | 1590 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 D | SDL_opengl.h | 6529 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);
|