HomeSort by relevance Sort by last modified time
    Searched defs:visibleContentRect (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebCore/platform/gtk/
ScrollViewGtk.cpp 166 IntRect ScrollView::visibleContentRect(bool includeScrollbars) const
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
CanvasLayer.cpp 74 m_visibleContentRect = layer.visibleContentRect();
165 IntRect CanvasLayer::visibleContentRect() const
  /external/webkit/Source/WebCore/platform/
ScrollableArea.h 123 virtual IntRect visibleContentRect(bool = false) const { ASSERT_NOT_REACHED(); return IntRect(); }
ScrollView.cpp 237 IntRect ScrollView::visibleContentRect(bool includeScrollbars) const
483 else if (physicalScrollY > contentsHeight() - visibleContentRect().height())
484 stretch.setHeight(physicalScrollY - (contentsHeight() - visibleContentRect().height()));
489 else if (physicalScrollX > contentsWidth() - visibleContentRect().width())
490 stretch.setWidth(physicalScrollX - (contentsWidth() - visibleContentRect().width()));
952 paintRect.intersect(visibleContentRect());
955 platformOffscreenContentRectangle(visibleContentRect(), rect);
    [all...]
  /external/webkit/Source/WebCore/dom/
Range.cpp     [all...]
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...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ShaderProgram.cpp 472 // visibleContentRect - local content(document) coordinates starting from upper left.
491 const SkRect& visibleContentRect,
500 visibleContentRect.fLeft,
501 visibleContentRect.fTop,
502 visibleContentRect.fRight,
503 visibleContentRect.fBottom,
520 m_visibleContentRect = visibleContentRect;
653 FloatRect visibleContentRect = m_contentToViewMatrix.inverse().mapRect(rect);
654 return rectInInvViewCoord(visibleContentRect);
659 FloatRect visibleContentRect = m_contentToInvViewMatrix.inverse().mapRect(rect)
    [all...]
  /external/webkit/Source/WebKit/android/nav/
WebView.cpp 559 void setVisibleContentRect(SkRect& visibleContentRect) {
560 m_visibleContentRect = visibleContentRect;
707 void findMaxVisibleRect(int movingLayerId, SkIRect& visibleContentRect)
712 FloatRect visibleContentFloatRect(visibleContentRect);
729 largeRect.round(&visibleContentRect);
903 SkRect visibleContentRect = jrectf_to_rect(env, visible);
904 webView->setVisibleContentRect(visibleContentRect);
914 SkRect visibleContentRect = jrectf_to_rect(env, jvisiblecontentrect);
915 wvInstance->setVisibleContentRect(visibleContentRect);
    [all...]
  /external/webkit/Source/WebKit/win/
WebFrame.cpp     [all...]

Completed in 406 milliseconds