/external/webkit/Source/WebCore/rendering/ |
ScrollBehavior.cpp | 49 const ScrollAlignment ScrollAlignment::alignCenterIfNeeded = { noScroll, alignCenter, alignToClosestEdge }; 50 const ScrollAlignment ScrollAlignment::alignToEdgeIfNeeded = { noScroll, alignToClosestEdge, alignToClosestEdge }; 51 const ScrollAlignment ScrollAlignment::alignCenterAlways = { alignCenter, alignCenter, alignCenter }; 52 const ScrollAlignment ScrollAlignment::alignTopAlways = { alignTop, alignTop, alignTop }; 53 const ScrollAlignment ScrollAlignment::alignBottomAlways = { alignBottom, alignBottom, alignBottom } [all...] |
ScrollBehavior.h | 59 struct ScrollAlignment { 60 static ScrollBehavior getVisibleBehavior(const ScrollAlignment& s) { return s.m_rectVisible; } 61 static ScrollBehavior getPartialBehavior(const ScrollAlignment& s) { return s.m_rectPartial; } 62 static ScrollBehavior getHiddenBehavior(const ScrollAlignment& s) { return s.m_rectHidden; } 64 static const ScrollAlignment alignCenterIfNeeded; 65 static const ScrollAlignment alignToEdgeIfNeeded; 66 static const ScrollAlignment alignCenterAlways; 67 static const ScrollAlignment alignTopAlways; 68 static const ScrollAlignment alignBottomAlways;
|
RenderLayer.h | 250 void scrollRectToVisible(const IntRect&, bool scrollToAnchor = false, const ScrollAlignment& alignX = ScrollAlignment::alignCenterIfNeeded, const ScrollAlignment& alignY = ScrollAlignment::alignCenterIfNeeded); 252 IntRect getRectToExpose(const IntRect& visibleRect, const IntRect& exposeRect, const ScrollAlignment& alignX, const ScrollAlignment& alignY); [all...] |
RenderLayer.cpp | [all...] |
/external/webkit/Source/WebCore/editing/ |
SelectionController.h | 183 void revealSelection(const ScrollAlignment& = ScrollAlignment::alignCenterIfNeeded, bool revealExtent = false);
|
SelectionController.cpp | 196 ScrollAlignment alignment; 199 alignment = (align == AlignCursorOnScrollAlways) ? ScrollAlignment::alignCenterAlways : ScrollAlignment::alignCenterIfNeeded; 201 alignment = (align == AlignCursorOnScrollAlways) ? ScrollAlignment::alignTopAlways : ScrollAlignment::alignToEdgeIfNeeded; [all...] |
Editor.cpp | [all...] |
/external/webkit/Source/WebCore/dom/ |
Element.cpp | 281 renderer()->enclosingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignTopAlways); 283 renderer()->enclosingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignBottomAlways); 293 renderer()->enclosingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignCenterIfNeeded, ScrollAlignment::alignCenterIfNeeded); 295 renderer()->enclosingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignToEdgeIfNeeded); [all...] |
/external/webkit/Source/WebKit/mac/WebView/ |
WebFrame.mm | 646 layer->scrollRectToVisible(enclosingIntRect(rangeRect), false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignToEdgeIfNeeded); 797 _private->coreFrame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); [all...] |
WebHTMLView.mm | [all...] |
/external/webkit/Source/WebCore/page/ |
FrameView.cpp | [all...] |
ContextMenuController.cpp | 284 frame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
WebPage.cpp | [all...] |
/external/webkit/Source/WebKit/android/jni/ |
WebViewCore.cpp | [all...] |
/external/webkit/Source/WebKit/win/ |
WebView.cpp | [all...] |