HomeSort by relevance Sort by last modified time
    Searched refs:ScrollAlignment (Results 1 - 14 of 14) sorted by null

  /external/webkit/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);
RenderLayer.cpp     [all...]
  /external/webkit/WebCore/page/
Frame.h 256 void revealSelection(const ScrollAlignment& = ScrollAlignment::alignCenterIfNeeded, bool revealExtent = false);
ContextMenuController.cpp 234 frame->revealSelection(ScrollAlignment::alignToEdgeIfNeeded);
FrameView.cpp     [all...]
Frame.cpp     [all...]
  /external/webkit/WebCore/dom/
Element.cpp 202 renderer()->enclosingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignTopAlways);
204 renderer()->enclosingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignBottomAlways);
214 renderer()->enclosingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignCenterIfNeeded, ScrollAlignment::alignCenterIfNeeded);
216 renderer()->enclosingLayer()->scrollRectToVisible(bounds, false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignToEdgeIfNeeded);
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebFrame.mm 637 layer->scrollRectToVisible(enclosingIntRect(rangeRect), false, ScrollAlignment::alignToEdgeIfNeeded, ScrollAlignment::alignToEdgeIfNeeded);
881 _private->coreFrame->revealSelection(ScrollAlignment::alignToEdgeIfNeeded);
    [all...]
WebHTMLView.mm     [all...]
  /external/webkit/WebCore/editing/
Editor.cpp     [all...]
SelectionController.cpp 161 m_frame->revealSelection(ScrollAlignment::alignToEdgeIfNeeded, true);
    [all...]
  /external/webkit/WebKit/win/
WebView.cpp     [all...]

Completed in 372 milliseconds