Home
last modified time | relevance | path

Searched refs:ScrollAlignment (Results 1 – 19 of 19) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DScrollBehavior.cpp49 const ScrollAlignment ScrollAlignment::alignCenterIfNeeded = { noScroll, alignCenter, alignToCloses…
50 const ScrollAlignment ScrollAlignment::alignToEdgeIfNeeded = { noScroll, alignToClosestEdge, alignT…
51 const ScrollAlignment ScrollAlignment::alignCenterAlways = { alignCenter, alignCenter, alignCenter …
52 const ScrollAlignment ScrollAlignment::alignTopAlways = { alignTop, alignTop, alignTop };
53 const ScrollAlignment ScrollAlignment::alignBottomAlways = { alignBottom, alignBottom, alignBottom …
DScrollBehavior.h59 struct ScrollAlignment { struct
60 static ScrollBehavior getVisibleBehavior(const ScrollAlignment& s) { return s.m_rectVisible; } in getVisibleBehavior() argument
61 static ScrollBehavior getPartialBehavior(const ScrollAlignment& s) { return s.m_rectPartial; } in getPartialBehavior() argument
62 static ScrollBehavior getHiddenBehavior(const ScrollAlignment& s) { return s.m_rectHidden; } in getHiddenBehavior() argument
64 static const ScrollAlignment alignCenterIfNeeded; argument
65 static const ScrollAlignment alignToEdgeIfNeeded; argument
66 static const ScrollAlignment alignCenterAlways; argument
67 static const ScrollAlignment alignTopAlways; argument
68 static const ScrollAlignment alignBottomAlways; argument
DRenderLayer.h272 …nchor = false, const ScrollAlignment& alignX = ScrollAlignment::alignCenterIfNeeded, const ScrollA…
274 …tRect& visibleRect, const IntRect& exposeRect, const ScrollAlignment& alignX, const ScrollAlignmen…
DRenderLayer.cpp1429 …ible(const IntRect& rect, bool scrollToAnchor, const ScrollAlignment& alignX, const ScrollAlignmen… in scrollRectToVisible()
1516 …tRect &visibleRect, const IntRect &exposeRect, const ScrollAlignment& alignX, const ScrollAlignmen… in getRectToExpose()
1526 scrollX = ScrollAlignment::getVisibleBehavior(alignX); in getRectToExpose()
1529 scrollX = ScrollAlignment::getVisibleBehavior(alignX); in getRectToExpose()
1534 scrollX = ScrollAlignment::getPartialBehavior(alignX); in getRectToExpose()
1536 scrollX = ScrollAlignment::getHiddenBehavior(alignX); in getRectToExpose()
1559 scrollY = ScrollAlignment::getVisibleBehavior(alignY); in getRectToExpose()
1562 scrollY = ScrollAlignment::getVisibleBehavior(alignY); in getRectToExpose()
1567 scrollY = ScrollAlignment::getPartialBehavior(alignY); in getRectToExpose()
1569 scrollY = ScrollAlignment::getHiddenBehavior(alignY); in getRectToExpose()
[all …]
/external/webkit/Source/WebCore/editing/
DSelectionController.h183 …void revealSelection(const ScrollAlignment& = ScrollAlignment::alignCenterIfNeeded, bool revealExt…
DSelectionController.cpp196 ScrollAlignment alignment; in setSelection()
199 …lignment = (align == AlignCursorOnScrollAlways) ? ScrollAlignment::alignCenterAlways : ScrollAlign… in setSelection()
201 …alignment = (align == AlignCursorOnScrollAlways) ? ScrollAlignment::alignTopAlways : ScrollAlignme… in setSelection()
1813 void SelectionController::revealSelection(const ScrollAlignment& alignment, bool revealExtent) in revealSelection()
DEditor.cpp1125 …ocusController()->focusedOrMainFrame()->selection()->revealSelection(ScrollAlignment::alignToEdgeI… in insertTextWithoutSendingTextEvent()
2460 m_frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in revealSelectionAfterEditingOperation()
/external/webkit/Source/WebCore/dom/
DElement.cpp281 …losingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlig… in scrollIntoView()
283 …losingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlig… in scrollIntoView()
293 …losingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignCenterIfNeeded, ScrollAlig… in scrollIntoViewIfNeeded()
295 …losingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlig… in scrollIntoViewIfNeeded()
/external/webkit/Source/WebKit/mac/WebView/
DWebFrame.mm646 …RectToVisible(enclosingIntRect(rangeRect), false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlig…
797 _private->coreFrame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded);
1076 _private->coreFrame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded);
DWebHTMLView.mm2661 coreFrame->selection()->revealSelection(ScrollAlignment::alignCenterAlways);
4248 coreFrame->selection()->revealSelection(ScrollAlignment::alignCenterAlways);
/external/webkit/Source/WebCore/page/
DFrameView.cpp1964 …enclosingLayer()->scrollRectToVisible(rect, true, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlig… in scrollToAnchor()
DContextMenuController.cpp284 frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in contextMenuItemSelected()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebPage.cpp1782 frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in replaceSelectionWithText()
/external/webkit/Source/WebKit/android/jni/
DWebViewCore.cpp1604 focusedFrame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in revealSelection()
/external/webkit/Source/WebKit/win/
DWebView.cpp3583 coreFrame->selection()->revealSelection(ScrollAlignment::alignCenterAlways); in centerSelectionInVisibleArea()
DChangeLog-2009-06-16957 Split ScrollAlignment and ScrollBehavior out of RenderLayer.h so that
/external/webkit/Source/WebCore/
DChangeLog-2005-12-197657 (khtml::): Made global ScrollAlignment members const
7658 …(khtml::RenderLayer::scrollRectToVisible): Changed ScrollAlignment parameters to const ScrollAlign…
7676 Added ScrollBehavior enum, ScrollAlignment struct, and ScrollAlignment static members
7680 (khtml::): initialize ScrollAlignment static members:
7685 (khtml::RenderLayer::getRectToExpose): Adjusted for new ScrollAlignment parameters.
7690 …* khtml/xml/dom_elementimpl.cpp: (ElementImpl::scrollIntoView): Use new ScrollAlignment values to …
7693 …(KWQKHTMLPart::centerSelectionInVisibleArea): Use new ScrollAlignment values to describe scrolling…
8588 …Added ScrollAlignment enum so callers can be more specific about exactly where they want to scroll.
DChangeLog-2009-06-1631828 Split ScrollAlignment and ScrollBehavior out of RenderLayer.h so that
31856 (WebCore::ScrollAlignment::getVisibleBehavior):
31857 (WebCore::ScrollAlignment::getPartialBehavior):
31858 (WebCore::ScrollAlignment::getHiddenBehavior):
/external/webkit/Source/WebKit/mac/
DChangeLog-2010-01-298406 Split ScrollAlignment and ScrollBehavior out of RenderLayer.h so that