/external/webkit/Source/WebCore/rendering/ |
D | ScrollBehavior.cpp | 49 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 …
|
D | ScrollBehavior.h | 59 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
|
D | RenderLayer.h | 272 …nchor = false, const ScrollAlignment& alignX = ScrollAlignment::alignCenterIfNeeded, const ScrollA… 274 …tRect& visibleRect, const IntRect& exposeRect, const ScrollAlignment& alignX, const ScrollAlignmen…
|
D | RenderLayer.cpp | 1429 …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/ |
D | SelectionController.h | 183 …void revealSelection(const ScrollAlignment& = ScrollAlignment::alignCenterIfNeeded, bool revealExt…
|
D | SelectionController.cpp | 196 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()
|
D | Editor.cpp | 1125 …ocusController()->focusedOrMainFrame()->selection()->revealSelection(ScrollAlignment::alignToEdgeI… in insertTextWithoutSendingTextEvent() 2460 m_frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in revealSelectionAfterEditingOperation()
|
/external/webkit/Source/WebCore/dom/ |
D | Element.cpp | 281 …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/ |
D | WebFrame.mm | 646 …RectToVisible(enclosingIntRect(rangeRect), false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlig… 797 _private->coreFrame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); 1076 _private->coreFrame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded);
|
D | WebHTMLView.mm | 2661 coreFrame->selection()->revealSelection(ScrollAlignment::alignCenterAlways); 4248 coreFrame->selection()->revealSelection(ScrollAlignment::alignCenterAlways);
|
/external/webkit/Source/WebCore/page/ |
D | FrameView.cpp | 1964 …enclosingLayer()->scrollRectToVisible(rect, true, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlig… in scrollToAnchor()
|
D | ContextMenuController.cpp | 284 frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in contextMenuItemSelected()
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
D | WebPage.cpp | 1782 frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in replaceSelectionWithText()
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebViewCore.cpp | 1604 focusedFrame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in revealSelection()
|
/external/webkit/Source/WebKit/win/ |
D | WebView.cpp | 3583 coreFrame->selection()->revealSelection(ScrollAlignment::alignCenterAlways); in centerSelectionInVisibleArea()
|
D | ChangeLog-2009-06-16 | 957 Split ScrollAlignment and ScrollBehavior out of RenderLayer.h so that
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2005-12-19 | 7657 (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.
|
D | ChangeLog-2009-06-16 | 31828 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/ |
D | ChangeLog-2010-01-29 | 8406 Split ScrollAlignment and ScrollBehavior out of RenderLayer.h so that
|