Searched defs:scrollOffset (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPluginScrollbarImpl.h52 int scrollOffset() { return m_scrollOffset; } function in class:blink::FINAL
H A DWebHistoryItem.cpp103 void WebHistoryItem::setPinchViewportScrollOffset(const WebFloatPoint& scrollOffset) argument
105 m_private->setPinchViewportScrollPoint(scrollOffset);
108 WebPoint WebHistoryItem::scrollOffset() const function in class:blink::WebHistoryItem
113 void WebHistoryItem::setScrollOffset(const WebPoint& scrollOffset) argument
115 m_private->setScrollPoint(scrollOffset);
H A DWebDocument.cpp265 WebSize WebDocument::scrollOffset() const function in class:blink::WebDocument
268 return view->scrollOffset();
H A DWebPluginScrollbarImpl.cpp78 void WebPluginScrollbarImpl::setScrollOffset(int scrollOffset) argument
80 m_scrollOffset = scrollOffset;
H A DWebRemoteFrameImpl.cpp226 WebSize WebRemoteFrameImpl::scrollOffset() const function in class:blink::WebRemoteFrameImpl
H A DWebLocalFrameImpl.cpp570 WebSize WebLocalFrameImpl::scrollOffset() const function in class:blink::WebLocalFrameImpl
575 return view->scrollOffset();
H A DWebViewImpl.cpp1117 IntSize scrollOffset; local
1119 scrollOffset = mainFrame()->scrollOffset();
1123 const int absoluteSourceX = source.x + scrollOffset.width();
1139 ASSERT(scrollOffset.width() + newX + newWidth <= maxSize.width);
2828 textboxRectInDocumentCoordinates.move(mainFrame()->scrollOffset());
2830 caretInDocumentCoordinates.move(mainFrame()->scrollOffset());
3038 IntPoint scrollOffset(mainFrame()->scrollOffset().width, mainFrame()->scrollOffset()
4262 WebSize scrollOffset = mainFrame()->scrollOffset(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementRareData.cpp41 IntSize scrollOffset; member in struct:blink::SameSizeAsElementRareData
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerScrollableArea.h113 IntSize scrollOffset() const { return m_scrollOffset; } function in class:blink::FINAL
118 void scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping = ScrollOffsetUnclamped);
195 void setScrollOffset(const IntSize& scrollOffset) { m_scrollOffset = scrollOffset; } argument
H A DRenderLayerScrollableArea.cpp96 // We save and restore only the scrollOffset as the other scroll values are recalculated.
352 if (scrollOffset() == toIntSize(newScrollOffset))
564 void RenderLayerScrollableArea::scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping clamp) argument
566 IntSize newScrollOffset = clamp == ScrollOffsetClamped ? clampScrollOffset(scrollOffset) : scrollOffset;
777 IntSize RenderLayerScrollableArea::clampScrollOffset(const IntSize& scrollOffset) const
782 int x = std::max(std::min(scrollOffset.width(), maxX), 0);
783 int y = std::max(std::min(scrollOffset.height(), maxY), 0);
H A DRenderLayer.cpp835 IntSize scrollOffset = parent()->renderBox()->scrolledContentOffset(); local
836 localPoint -= scrollOffset;
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollView.h134 IntSize scrollOffset() const { return toIntSize(visibleContentRect().location()); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes. function in class:blink::ScrollView
204 newPoint = point - scrollOffset();
213 newPoint = point + scrollOffset();
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGSVGElement.cpp514 LayoutSize scrollOffset = view->scrollOffset(); local
515 scrollOffset.scale(zoomFactor);
516 transform.translate(-scrollOffset.width(), -scrollOffset.height());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DDOMExtension.js458 Element.prototype.scrollOffset = function()
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositedLayerMapping.cpp761 IntSize scrollOffset = renderBox->scrolledContentOffset(); local
763 graphicsLayerParentLocation = scrollOrigin - scrollOffset;
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebFrameTest.cpp1892 const WebSize scrollOffset,
1912 EXPECT_EQ(WebSize(), webViewHelper.webViewImpl()->mainFrame()->scrollOffset());
1915 // Resizing just the height should not affect pageScaleFactor or scrollOffset.
1919 webViewHelper.webViewImpl()->setMainFrameScrollOffset(WebPoint(scrollOffset.width, scrollOffset.height));
1921 const WebSize expectedScrollOffset = webViewHelper.webViewImpl()->mainFrame()->scrollOffset();
1924 EXPECT_EQ(expectedScrollOffset, webViewHelper.webViewImpl()->mainFrame()->scrollOffset());
1927 EXPECT_EQ(expectedScrollOffset, webViewHelper.webViewImpl()->mainFrame()->scrollOffset());
1930 // Generic resize preserves scrollOffset relative to anchor node located
1938 webViewHelper.webViewImpl()->mainFrame()->setScrollOffset(scrollOffset);
1890 testResizeYieldsCorrectScrollAndScale(const char* url, const float initialPageScaleFactor, const WebSize scrollOffset, const WebSize viewportSize, const bool shouldScaleRelativeToViewportWidth) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h1863 inline double adjustScrollForAbsoluteZoom(int scrollOffset, float zoomFactor) argument
1865 double result = scrollOffset / zoomFactor;
1870 inline double adjustScrollForAbsoluteZoom(int scrollOffset, const RenderStyle& style) argument
1872 return adjustScrollForAbsoluteZoom(scrollOffset, style.effectiveZoom());
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 326 milliseconds