HomeSort by relevance Sort by last modified time
    Searched refs:visibleContentRect (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/chromium/
FramelessScrollView.cpp 73 return contentsToWindow(visibleContentRect(!clipToContents));
  /external/webkit/Source/WebCore/platform/
ScrollView.h 148 IntRect visibleContentRect(bool includeScrollbars = false) const;
149 IntRect actualVisibleContentRect() const { return m_actualVisibleContentRect.isEmpty() ? visibleContentRect() : m_actualVisibleContentRect; }
151 int visibleWidth() const { return visibleContentRect().width(); }
152 int visibleHeight() const { return visibleContentRect().height(); }
178 IntPoint scrollPosition() const { return visibleContentRect().location(); }
179 IntSize scrollOffset() const { return visibleContentRect().location() - IntPoint(); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes.
ScrollView.cpp 230 IntRect ScrollView::visibleContentRect(bool includeScrollbars) const
452 else if (physicalScrollY > contentsHeight() - visibleContentRect().height())
453 stretch.setHeight(physicalScrollY - (contentsHeight() - visibleContentRect().height()));
458 else if (physicalScrollX > contentsWidth() - visibleContentRect().width())
459 stretch.setWidth(physicalScrollX - (contentsWidth() - visibleContentRect().width()));
921 paintRect.intersect(visibleContentRect());
924 platformOffscreenContentRectangle(visibleContentRect(), rect);
    [all...]
ScrollableArea.h 123 virtual IntRect visibleContentRect(bool = false) const { ASSERT_NOT_REACHED(); return IntRect(); }
  /external/webkit/Source/WebCore/platform/gtk/
ScrollViewGtk.cpp 166 IntRect ScrollView::visibleContentRect(bool includeScrollbars) const
  /external/webkit/Source/WebCore/inspector/
DOMNodeHighlighter.cpp 231 FloatRect overlayRect = view->visibleContentRect();
233 overlayRect = view->visibleContentRect();
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFramePrivate.idl 104 HRESULT visibleContentRect([out, retval] RECT*);
IWebViewPrivate.idl 90 HRESULT visibleContentRect([out, retval] LPRECT rect);
  /external/webkit/Source/WebCore/platform/mac/
ScrollAnimatorMac.mm 848 limitDelta.setHeight(m_scrollableArea->visibleContentRect().y() + + m_scrollableArea->scrollOrigin().y());
851 limitDelta.setHeight(m_scrollableArea->contentsSize().height() - (m_scrollableArea->visibleContentRect().maxY() + m_scrollableArea->scrollOrigin().y()));
856 limitDelta.setWidth(m_scrollableArea->visibleContentRect().x() + m_scrollableArea->scrollOrigin().x());
859 limitDelta.setWidth(m_scrollableArea->contentsSize().width() - (m_scrollableArea->visibleContentRect().maxX() + m_scrollableArea->scrollOrigin().x()));
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.cpp 560 IntRect visibleContentRect = view->visibleContentRect();
562 quads[i].move(-visibleContentRect.x(), -visibleContentRect.y());
600 IntRect visibleContentRect = view->visibleContentRect();
601 result.move(-visibleContentRect.x(), -visibleContentRect.y());
    [all...]
Range.cpp     [all...]
  /external/webkit/Source/WebCore/page/
SpatialNavigation.cpp 305 IntRect containerViewportRect = frameView->visibleContentRect();
489 IntRect rect = frame->view()->visibleContentRect(true);
540 return rectToAbsoluteCoordinates(frame, frame->view()->visibleContentRect());
678 IntSize viewSize = candidate.visibleNode->document()->page()->mainFrame()->view()->visibleContentRect().size();
FrameView.cpp 995 root->view()->repaint(); // FIXME: This isn't really right, since the RenderView doesn't fully encompass the visibleContentRect(). It just happens
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.cpp 486 IntRect contentRect = view->visibleContentRect(true);
499 IntRect contentRect = view->visibleContentRect(false);
FindController.cpp 235 IntRect visibleRect = frame->view()->visibleContentRect();
  /external/webkit/Source/WebCore/editing/
SelectionController.cpp     [all...]
  /external/webkit/Source/WebKit/win/
WebFrame.h 273 virtual HRESULT STDMETHODCALLTYPE visibleContentRect(RECT*);
WebFrame.cpp     [all...]
WebView.h 634 virtual HRESULT STDMETHODCALLTYPE visibleContentRect(
    [all...]
WebView.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLayerCompositor.cpp     [all...]
RenderView.cpp 659 return m_frameView->visibleContentRect();
RenderLayer.cpp     [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp     [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebframe.cpp 378 context->clip(view->visibleContentRect());
    [all...]

Completed in 376 milliseconds

1 2