Searched refs:contentRect (Results 1 - 18 of 18) sorted by relevance

/external/qemu/distrib/sdl-1.2.12/src/video/quartz/
H A DSDL_QuartzWindow.h32 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)backingType defer:(BOOL)flag;
H A DSDL_QuartzWindow.m186 - (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 DSDL_QuartzVideo.m427 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 DDumpRenderTreeWindow.mm58 - (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 DRenderSlider.cpp314 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 DRenderVideo.cpp127 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 DRenderSVGImage.cpp191 IntRect contentRect = enclosingIntRect(repaintRectInLocalCoordinates()); local
192 if (!contentRect.isEmpty())
193 rects.append(contentRect);
/external/webkit/WebKit/mac/Carbon/
H A DCarbonWindowFrame.m79 + (NSRect)frameRectForContentRect:(NSRect)contentRect styleMask:(NSUInteger)style {
82 return contentRect;
H A DCarbonWindowAdapter.mm83 - _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 DWebNodeHighlight.mm55 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 DUIDelegate.h119 /* [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 DWebVideoFullscreenController.mm315 - (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 DWebVideoFullscreenHUDWindowController.mm81 - (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 DIWebUIDelegate.idl389 - (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 DWebBaseNetscapePluginView.mm924 IntRect contentRect(rect);
925 contentRect.move(renderer->borderLeft() + renderer->paddingLeft(), renderer->borderTop() + renderer->paddingTop());
927 renderer->repaintRectangle(contentRect);
H A DWebNetscapePluginView.mm214 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 DWebViewCore.cpp529 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 DAccessibilityRenderObject.cpp437 IntRect contentRect = m_renderer->absoluteClippedOverflowRect(); local
440 viewRect.intersect(contentRect);

Completed in 1787 milliseconds