Home
last modified time | relevance | path

Searched refs:frameRect (Results 1 – 25 of 51) sorted by relevance

123

/external/webkit/WebCore/platform/
DWidget.h122 int x() const { return frameRect().x(); } in x()
123 int y() const { return frameRect().y(); } in y()
124 int width() const { return frameRect().width(); } in width()
125 int height() const { return frameRect().height(); } in height()
126 IntSize size() const { return frameRect().size(); } in size()
127 IntPoint pos() const { return frameRect().location(); } in pos()
130 virtual IntRect frameRect() const;
DScrollView.cpp274 rect.intersect(view->frameRect()); in scrollRectIntoViewRecursively()
382 IntRect oldRect(m_horizontalScrollbar->frameRect()); in updateScrollbars()
388 if (!m_scrollbarsSuppressed && oldRect != m_horizontalScrollbar->frameRect()) in updateScrollbars()
406 IntRect oldRect(m_verticalScrollbar->frameRect()); in updateScrollbars()
412 if (!m_scrollbarsSuppressed && oldRect != m_verticalScrollbar->frameRect()) in updateScrollbars()
596 if (m_horizontalScrollbar && m_horizontalScrollbar->frameRect().contains(viewPoint)) in scrollbarUnderMouse()
598 if (m_verticalScrollbar && m_verticalScrollbar->frameRect().contains(viewPoint)) in scrollbarUnderMouse()
634 IntRect oldRect = frameRect(); in setFrameRect()
686 documentDirtyRect.intersect(frameRect()); in paint()
706 scrollViewDirtyRect.intersect(frameRect()); in paint()
DScrollbarThemeComposite.cpp113 scrollbar->frameRect(), in paint()
168 if (!scrollbar->frameRect().contains(mousePosition)) in hitTest()
221 result = scrollbar->frameRect(); in invalidatePart()
/external/webkit/WebCore/plugins/win/
DPluginViewWin.cpp319 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size()); in updatePluginWidget()
410 …IntPoint locationInWindow = static_cast<FrameView*>(parent())->contentsToWindow(frameRect().locati… in paintWindowedPluginIntoContext()
412 HDC hdc = context->getWindowsContext(frameRect(), false); in paintWindowedPluginIntoContext()
429 context->releaseWindowsContext(hdc, frameRect(), false); in paintWindowedPluginIntoContext()
450 IntRect rectInWindow = static_cast<FrameView*>(parent())->contentsToWindow(frameRect()); in paint()
471 IntPoint p = static_cast<FrameView*>(parent())->contentsToWindow(frameRect().location()); in paint()
478 windowpos.cx = frameRect().width(); in paint()
479 windowpos.cy = frameRect().height(); in paint()
487 setNPWindowRect(frameRect()); in paint()
498 context->releaseWindowsContext(hdc, frameRect(), m_isTransparent); in paint()
[all …]
/external/webkit/WebCore/platform/image-decoders/skia/
DGIFImageDecoder.cpp268 IntRect frameRect(m_reader->frameXOffset(), m_reader->frameYOffset(), in initFrameBuffer() local
272 if (frameRect.right() > size().width()) in initFrameBuffer()
273 frameRect.setWidth(size().width() - m_reader->frameXOffset()); in initFrameBuffer()
274 if (frameRect.bottom() > size().height()) in initFrameBuffer()
275 frameRect.setHeight(size().height() - m_reader->frameYOffset()); in initFrameBuffer()
278 buffer->setRect(frameRect); in initFrameBuffer()
/external/webkit/WebCore/platform/image-decoders/gif/
DGIFImageDecoder.cpp249 IntRect frameRect(m_reader->frameXOffset(), m_reader->frameYOffset(), in initFrameBuffer() local
253 if (frameRect.right() > m_size.width()) in initFrameBuffer()
254 frameRect.setWidth(m_size.width() - m_reader->frameXOffset()); in initFrameBuffer()
255 if (frameRect.bottom() > m_size.height()) in initFrameBuffer()
256 frameRect.setHeight(m_size.height() - m_reader->frameYOffset()); in initFrameBuffer()
259 buffer->setRect(frameRect); in initFrameBuffer()
/external/webkit/WebKit/win/WebCoreSupport/
DEmbeddedWidget.cpp85 if (rect != frameRect()) in setFrameRect()
102 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size()); in frameRectsChanged()
/external/webkit/WebKit/mac/Carbon/
DCarbonWindowFrame.m86 + (NSRect)contentRectForFrameRect:(NSRect)frameRect styleMask:(NSUInteger)style {
89 return frameRect;
191 - (NSRect)dragRectForFrameRect:(NSRect)frameRect {
197 dragRect.origin.y = NSMaxY(frameRect) - dragRect.size.height;
198 dragRect.size.width = frameRect.size.width;
199 dragRect.origin.x = frameRect.origin.x;
/external/webkit/WebCore/platform/mac/
DScrollbarThemeMac.mm295 return scrollbar->frameRect();
366 trackInfo.bounds = scrollbar->frameRect();
390 trackInfo.bounds = IntRect(IntPoint(), scrollbar->frameRect().size());
392 IntRect bufferRect(scrollbar->frameRect());
394 bufferRect.move(-scrollbar->frameRect().x(), -scrollbar->frameRect().y());
401 context->drawImage(imageBuffer->image(), scrollbar->frameRect().location());
/external/webkit/WebCore/platform/gtk/
DScrollbarGtk.cpp84 IntPoint loc = parent()->convertToContainingWindow(frameRect().location()); in frameRectsChanged()
87 IntSize sz = frameRect().size(); in frameRectsChanged()
/external/webkit/WebCore/platform/win/
DPopupMenuWin.cpp362 damageRect.setWidth(damageRect.width() - m_scrollbar->frameRect().width()); in invalidateItem()
570 listRect.setWidth(listRect.width() - m_scrollbar->frameRect().width()); in valueChanged()
574 r = m_scrollbar->frameRect(); in valueChanged()
723 IntRect scrollBarRect = popup->scrollbar()->frameRect(); in PopupWndProc()
754 IntRect scrollBarRect = popup->scrollbar()->frameRect(); in PopupWndProc()
773 IntRect scrollBarRect = popup->scrollbar()->frameRect(); in PopupWndProc()
DWidgetWin.cpp89 IntRect Widget::frameRect() const in frameRect() function in WebCore::Widget
/external/webkit/WebCore/rendering/
DRenderScrollbarTheme.cpp85 return scrollbar->frameRect(); in trackRect()
117 …tic_cast<RenderScrollbar*>(scrollbar)->paintPart(context, ScrollbarBGPart, scrollbar->frameRect()); in paintScrollbarBackground()
DRenderWidget.cpp118 if (element() && m_widget->frameRect() != frame) { in setWidgetGeometry()
230 IntRect oldBounds(m_widget->frameRect()); in updateWidgetPosition()
/external/webkit/WebCore/plugins/gtk/
DPluginViewGtk.cpp96 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size()); in updatePluginWidget()
162 setNPWindowRect(frameRect()); in paint()
580 setNPWindowRect(frameRect()); in init()
/external/webkit/WebCore/plugins/qt/
DPluginViewQt.cpp89 m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size()); in updatePluginWidget()
484 setNPWindowRect(frameRect()); in init()
/external/webkit/WebCore/plugins/
DPluginView.cpp122 if (rect != frameRect()) { in setFrameRect()
127 if (rect != frameRect()) in setFrameRect()
954 …IntRect imageRect(frameRect().x(), frameRect().y(), nullPluginImage->width(), nullPluginImage->hei… in paintMissingPluginIcon()
956 int xOffset = (frameRect().width() - imageRect.width()) / 2; in paintMissingPluginIcon()
957 int yOffset = (frameRect().height() - imageRect.height()) / 2; in paintMissingPluginIcon()
/external/qemu/distrib/sdl-1.2.12/src/video/quartz/
DSDL_QuartzWindow.m106 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag
117 [ super setFrame:frameRect display:flag ];
123 [ super setFrame:frameRect display:flag ];
DSDL_QuartzWindow.h28 - (void)setFrame:(NSRect)frameRect display:(BOOL)flag;
/external/webkit/WebKit/win/
DWebScrollBar.cpp169 HRESULT STDMETHODCALLTYPE WebScrollBar::frameRect( in frameRect() function in WebScrollBar
174 IntRect rect = m_scrollBar->frameRect(); in frameRect()
/external/webkit/WebCore/platform/chromium/
DWidgetChromium.cpp75 IntRect Widget::frameRect() const in frameRect() function in WebCore::Widget
/external/webkit/WebCore/plugins/android/
DPluginViewAndroid.cpp542 IntRect frame = frameRect(); in paint()
557 … m_windowRect = IntRect(frameView->contentsToWindow(frameRect().location()), frameRect().size()); in updatePluginWidget()
/external/webkit/WebCore/platform/qt/
DWidgetQt.cpp65 IntRect Widget::frameRect() const in frameRect() function in WebCore::Widget
/external/webkit/WebCore/platform/wx/
DWidgetWx.cpp70 IntRect Widget::frameRect() const in frameRect() function in WebCore::Widget
/external/webkit/WebCore/platform/android/
DWidgetAndroid.cpp50 IntRect Widget::frameRect() const in frameRect() function in WebCore::Widget

123