Searched refs:contentRect (Results 1 – 13 of 13) sorted by relevance
/external/webkit/WebCore/rendering/ |
D | RenderVideo.cpp | 71 IntRect contentRect = contentBoxRect(); in videoBox() local 73 if (intrinsicSize().isEmpty() || contentRect.isEmpty()) in videoBox() 76 IntRect resultRect = contentRect; in videoBox() 77 …int ratio = contentRect.width() * intrinsicSize().height() - contentRect.height() * intrinsicSize(… in videoBox() 79 int newWidth = contentRect.height() * intrinsicSize().width() / intrinsicSize().height(); in videoBox() 83 resultRect.move((contentRect.width() - resultRect.width()) / 2, 0); in videoBox() 85 int newHeight = contentRect.width() * intrinsicSize().height() / intrinsicSize().width(); in videoBox() 88 resultRect.move(0, (contentRect.height() - resultRect.height()) / 2); in videoBox()
|
D | RenderSVGImage.cpp | 261 IntRect contentRect = enclosingIntRect(relativeBBox()); in addFocusRingRects() local 262 graphicsContext->addFocusRingRect(contentRect); in addFocusRingRects()
|
/external/qemu/distrib/sdl-1.2.12/src/video/quartz/ |
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.size ]; [all …]
|
D | SDL_QuartzWindow.h | 32 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingS…
|
D | SDL_QuartzWindow.m | 186 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingS… 198 …return [ super initWithContentRect:contentRect styleMask:styleMask backing:backingType defer:flag …
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
D | DumpRenderTreeWindow.mm | 56 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingSto… 63 …return [super initWithContentRect:contentRect styleMask:styleMask backing:bufferingType defer:defe…
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
D | UIDelegate.h | 117 /* [in] */ RECT *contentRect) { return E_NOTIMPL; } in setContentRect() argument 121 /* [retval][out] */ RECT *contentRect) { return E_NOTIMPL; } in webViewContentRect() argument
|
/external/webkit/WebKit/mac/WebInspector/ |
D | WebNodeHighlight.m | 55 …NSRect contentRect = [NSWindow contentRectForFrameRect:[self _computeHighlightWindowFrame] styleMa… 56 …_highlightWindow = [[NSWindow alloc] initWithContentRect:contentRect styleMask:styleMask backing:N…
|
/external/webkit/WebKit/mac/Carbon/ |
D | CarbonWindowFrame.m | 79 + (NSRect)frameRectForContentRect:(NSRect)contentRect styleMask:(NSUInteger)style { 82 return contentRect;
|
D | CarbonWindowAdapter.mm | 83 - _initContent:(const NSRect *)contentRect styleMask:(unsigned int)aStyle backing:(NSBackingStoreTy… 119 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)style backing:(NSBackingStore… 122 self = [super initWithContentRect:contentRect styleMask:style backing:bufferingType defer:flag];
|
/external/webkit/WebKit/win/Interfaces/ |
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/ |
D | WebNetscapePluginView.mm | 215 …NSRect contentRect = [contentView convertRect:[contentView frame] toView:nil]; // convert to windo… 221 …MovePortTo(static_cast<short>(contentRect.origin.x), /* Flip Y */ static_cast<short>(windowHeight … 222 … PortSize(static_cast<short>(contentRect.size.width), static_cast<short>(contentRect.size.height));
|
/external/webkit/WebCore/page/ |
D | AccessibilityRenderObject.cpp | 373 IntRect contentRect = m_renderer->absoluteClippedOverflowRect(); in isOffScreen() local 376 viewRect.intersect(contentRect); in isOffScreen()
|