/external/qemu/distrib/sdl-1.2.12/src/video/quartz/ |
H A D | SDL_QuartzWindow.h | 32 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag;
|
H A D | SDL_QuartzWindow.m | 186 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag 198 return [ super initWithContentRect:contentRect styleMask:styleMask backing:backingType defer:flag ];
|
H A D | SDL_QuartzVideo.m | 427 NSRect contentRect; 532 contentRect = NSMakeRect (0, 0, width, height); 555 initWithContentRect:contentRect 568 [ qz_window setContentSize:contentRect.size ]; 570 [ window_view setFrameSize:contentRect.size ]; 586 window_view = [ [ NSView alloc ] initWithFrame:contentRect ]; 649 NSRect contentRect; 659 contentRect = NSMakeRect (0, 0, width, height); 735 initWithContentRect:contentRect 767 [ qz_window setContentSize:contentRect [all...] |
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
H A D | DumpRenderTreeWindow.mm | 58 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation 65 return [super initWithContentRect:contentRect styleMask:styleMask backing:bufferingType defer:deferCreation];
|
/external/webkit/WebCore/rendering/ |
H A D | RenderSlider.cpp | 314 IntRect contentRect = contentBoxRect(); local 316 thumbRect.setX(contentRect.x() + (contentRect.width() - thumbRect.width()) / 2); 317 thumbRect.setY(contentRect.y() + static_cast<int>(nextafter((contentRect.height() - thumbRect.height()) + 1, 0) * (1 - fraction))); 319 thumbRect.setX(contentRect.x() + static_cast<int>(nextafter((contentRect.width() - thumbRect.width()) + 1, 0) * fraction)); 320 thumbRect.setY(contentRect.y() + (contentRect.height() - thumbRect.height()) / 2);
|
H A D | RenderVideo.cpp | 127 IntRect contentRect = contentBoxRect(); local 128 if (elementSize.isEmpty() || contentRect.isEmpty()) 131 IntRect renderBox = contentRect; 138 renderBox.move((contentRect.width() - renderBox.width()) / 2, 0); 143 renderBox.move(0, (contentRect.height() - renderBox.height()) / 2);
|
H A D | RenderSVGImage.cpp | 191 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates()); local 192 if (!contentRect.isEmpty()) 193 rects.append(contentRect);
|
/external/webkit/WebKit/mac/Carbon/ |
H A D | CarbonWindowFrame.m | 79 + (NSRect)frameRectForContentRect:(NSRect)contentRect styleMask:(NSUInteger)style { 82 return contentRect;
|
H A D | CarbonWindowAdapter.mm | 83 - _initContent:(const NSRect *)contentRect styleMask:(unsigned int)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag contentView:aView; 119 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)style backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag { 122 self = [super initWithContentRect:contentRect styleMask:style backing:bufferingType defer:flag];
|
/external/webkit/WebKit/mac/WebInspector/ |
H A D | WebNodeHighlight.mm | 55 NSRect contentRect = [NSWindow contentRectForFrameRect:[self _computeHighlightWindowFrame] styleMask:styleMask]; 56 _highlightWindow = [[NSWindow alloc] initWithContentRect:contentRect styleMask:styleMask backing:NSBackingStoreBuffered defer:NO];
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
H A D | UIDelegate.h | 119 /* [in] */ RECT *contentRect) { return E_NOTIMPL; } 123 /* [retval][out] */ RECT *contentRect) { return E_NOTIMPL; } 117 setContentRect( IWebView *sender, RECT *contentRect) argument 121 webViewContentRect( IWebView *sender, RECT *contentRect) argument
|
/external/webkit/WebKit/mac/WebView/ |
H A D | WebVideoFullscreenController.mm | 315 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag 318 self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:bufferingType defer:flag];
|
H A D | WebVideoFullscreenHUDWindowController.mm | 81 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag 84 self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:bufferingType defer:flag];
|
/external/webkit/WebKit/win/Interfaces/ |
H A D | IWebUIDelegate.idl | 389 - (void)webView:(WebView *)sender setContentRect:(NSRect)contentRect; 391 HRESULT setContentRect([in] IWebView* sender, [in] RECT* contentRect); 399 HRESULT webViewContentRect([in] IWebView* sender, [out, retval] RECT* contentRect);
|
/external/webkit/WebKit/mac/Plugins/ |
H A D | WebBaseNetscapePluginView.mm | 924 IntRect contentRect(rect); 925 contentRect.move(renderer->borderLeft() + renderer->paddingLeft(), renderer->borderTop() + renderer->paddingTop()); 927 renderer->repaintRectangle(contentRect);
|
H A D | WebNetscapePluginView.mm | 214 NSRect contentRect = [contentView convertRect:[contentView frame] toView:nil]; // convert to window-relative coordinates 220 MovePortTo(static_cast<short>(contentRect.origin.x), /* Flip Y */ static_cast<short>(windowHeight - NSMaxY(contentRect))); 221 PortSize(static_cast<short>(contentRect.size.width), static_cast<short>(contentRect.size.height));
|
/external/webkit/WebKit/android/jni/ |
H A D | WebViewCore.cpp | 529 SkIRect contentRect; local 530 contentRect.set(0, 0, width, height); 531 SkIRect total(contentRect); 572 if (!contentRect.contains(total)) {
|
/external/webkit/WebCore/accessibility/ |
H A D | AccessibilityRenderObject.cpp | 437 IntRect contentRect = m_renderer->absoluteClippedOverflowRect(); local 440 viewRect.intersect(contentRect);
|