/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ElementRareData.cpp | 44 IntSize scrollOffset;
|
/external/chromium_org/third_party/WebKit/Source/platform/scroll/ |
ScrollbarThemeMacCommon.h | 47 virtual void paintOverhangShadows(GraphicsContext*, const IntSize& scrollOffset, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) OVERRIDE;
|
ScrollView.cpp | 131 updateScrollbars(scrollOffset()); 224 updateScrollbars(scrollOffset()); 329 updateScrollbars(scrollOffset()); 578 return viewPoint + scrollOffset(); 583 IntPoint viewPoint = contentsPoint - scrollOffset(); 590 viewRect.move(scrollOffset()); 597 viewRect.move(-scrollOffset()); 604 return viewPoint + scrollOffset(); 609 IntPoint viewPoint = contentsPoint - scrollOffset(); 616 viewRect.move(scrollOffset()); [all...] |
ScrollView.h | 149 IntSize scrollOffset() const { return toIntSize(visibleContentRect().location()); } // Gets the scrolled position as an IntSize. Convenient for adding to other sizes. 221 newPoint = point - scrollOffset(); 230 newPoint = point + scrollOffset();
|
ScrollbarThemeMacCommon.mm | 154 void ScrollbarThemeMacCommon::paintOverhangShadows(GraphicsContext* context, const IntSize& scrollOffset, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect) 189 if (scrollOffset.height() < 0) { 207 if (scrollOffset.width() < 0) { 221 if (scrollOffset.height() < 0) { 237 if (scrollOffset.width() < 0) {
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
ProgrammaticScrollTest.cpp | 75 EXPECT_EQ(200, webViewImpl->mainFrameImpl()->scrollOffset().height); 106 EXPECT_EQ(400, webViewImpl->mainFrameImpl()->scrollOffset().height);
|
GraphicsLayerTest.cpp | 143 virtual void setScrollOffset(const IntPoint& scrollOffset) OVERRIDE { m_scrollPosition = scrollOffset; }
|
WebViewTest.cpp | 785 EXPECT_EQ(0, webViewImpl->mainFrame()->scrollOffset().width); 786 EXPECT_EQ(0, webViewImpl->mainFrame()->scrollOffset().height); 791 EXPECT_EQ(116, webViewImpl->mainFrame()->scrollOffset().width); 792 EXPECT_EQ(84, webViewImpl->mainFrame()->scrollOffset().height); 798 EXPECT_EQ(16, webViewImpl->mainFrame()->scrollOffset().width); 799 EXPECT_EQ(24, webViewImpl->mainFrame()->scrollOffset().height); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayerScrollableArea.h | 116 IntSize scrollOffset() const { return m_scrollOffset; } 121 void scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping = ScrollOffsetUnclamped); 191 void setScrollOffset(const IntSize& scrollOffset) { m_scrollOffset = scrollOffset; }
|
RenderPart.cpp | 124 LayoutPoint contentOffset = LayoutPoint(borderLeft() + paddingLeft(), borderTop() + paddingTop()) - childFrameView->scrollOffset();
|
RenderLayerScrollableArea.cpp | 92 // We save and restore only the scrollOffset as the other scroll values are recalculated. 327 if (scrollOffset() == toIntSize(newScrollOffset)) 523 void RenderLayerScrollableArea::scrollToOffset(const IntSize& scrollOffset, ScrollOffsetClamping clamp) 525 IntSize newScrollOffset = clamp == ScrollOffsetClamped ? clampScrollOffset(scrollOffset) : scrollOffset; 689 IntSize RenderLayerScrollableArea::clampScrollOffset(const IntSize& scrollOffset) const 694 int x = std::max(std::min(scrollOffset.width(), maxX), 0); 695 int y = std::max(std::min(scrollOffset.height(), maxY), 0); [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
ScrollbarGroup.cpp | 105 if (m_horizontalScrollbar && m_horizontalScrollbar->scrollOffset() != offset.x()) 107 else if (m_verticalScrollbar && m_verticalScrollbar->scrollOffset() != offset.y()) 177 int x = m_horizontalScrollbar ? m_horizontalScrollbar->scrollOffset() : 0; 178 int y = m_verticalScrollbar ? m_verticalScrollbar->scrollOffset() : 0;
|
WebPluginScrollbarImpl.h | 55 int scrollOffset() { return m_scrollOffset; }
|
WebHistoryItem.cpp | 132 WebPoint WebHistoryItem::scrollOffset() const 137 void WebHistoryItem::setScrollOffset(const WebPoint& scrollOffset) 140 m_private->setScrollPoint(scrollOffset);
|
FullscreenController.cpp | 83 m_exitFullscreenScrollOffset = m_webViewImpl->mainFrame()->scrollOffset();
|
WebPluginScrollbarImpl.cpp | 81 void WebPluginScrollbarImpl::setScrollOffset(int scrollOffset) 83 m_scrollOffset = scrollOffset;
|
WebViewImpl.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
Spectrum.js | 142 var scrollOffset; 160 var dragX = Math.max(0, Math.min(e.pageX - offset.left + scrollOffset.left, maxWidth)); 161 var dragY = Math.max(0, Math.min(e.pageY - offset.top + scrollOffset.top, maxHeight)); 185 scrollOffset = element.scrollOffset();
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebHistoryItem.h | 81 BLINK_EXPORT WebPoint scrollOffset() const;
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailTabCarousel.java | 244 * @param scrollOffset The offset by how far we scrolled, where 0=not scrolled, -x=scrolled by 248 public void animateAppear(int width, int scrollOffset) { 258 if (scrollOffset == Integer.MIN_VALUE) { 263 final int pixelsOfPhotoLeft = Math.round(photoHeight) + scrollOffset;
|
/external/chromium/webkit/glue/ |
glue_serialize_unittest.cc | 92 EXPECT_EQ(a.scrollOffset(), b.scrollOffset());
|
glue_serialize.cc | 311 WriteInteger(item.scrollOffset().x, obj); 312 WriteInteger(item.scrollOffset().y, obj);
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGSVGElement.cpp | 457 LayoutSize scrollOffset = view->scrollOffset(); 458 scrollOffset.scale(zoomFactor); 459 transform.translate(-scrollOffset.width(), -scrollOffset.height());
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
TextFieldInputType.cpp | 242 IntSize scrollOffset(!renderTextControl->style()->isLeftToRightDirection() ? innerScrollableArea->scrollWidth() : 0, 0); 243 innerScrollableArea->scrollToOffset(scrollOffset, ScrollOffsetClamped);
|
/external/chromium_org/content/public/renderer/ |
history_item_serialization.cc | 90 state->scroll_offset = item.scrollOffset();
|