scrollableArea    740 Source/core/accessibility/AXObject.cpp     ScrollableArea* scrollableArea;
scrollableArea    741 Source/core/accessibility/AXObject.cpp     for (scrollableArea = 0;
scrollableArea    742 Source/core/accessibility/AXObject.cpp         scrollParent && !(scrollableArea = scrollParent->getScrollableAreaIfScrollable());
scrollableArea    744 Source/core/accessibility/AXObject.cpp     if (!scrollableArea)
scrollableArea    748 Source/core/accessibility/AXObject.cpp     IntPoint scrollPosition = scrollableArea->scrollPosition();
scrollableArea    749 Source/core/accessibility/AXObject.cpp     IntRect scrollVisibleRect = scrollableArea->visibleContentRect();
scrollableArea    790 Source/core/accessibility/AXObject.cpp         ScrollableArea* scrollableArea = outer->getScrollableAreaIfScrollable();
scrollableArea    794 Source/core/accessibility/AXObject.cpp         IntPoint scrollPosition = scrollableArea->scrollPosition();
scrollableArea    817 Source/core/accessibility/AXObject.cpp             scrollPosition = scrollableArea->scrollPosition();
scrollableArea    259 Source/core/accessibility/AXRenderObject.cpp     return box->scrollableArea();
scrollableArea   1218 Source/core/accessibility/AXRenderObject.cpp         ScrollableArea* scrollableArea = box->scrollableArea();
scrollableArea   1219 Source/core/accessibility/AXRenderObject.cpp         if (scrollableArea && scrollableArea->scrollPosition() != m_cachedScrollPosition)
scrollableArea   1242 Source/core/accessibility/AXRenderObject.cpp         ScrollableArea* scrollableArea = box->scrollableArea();
scrollableArea   1243 Source/core/accessibility/AXRenderObject.cpp         if (scrollableArea)
scrollableArea   1244 Source/core/accessibility/AXRenderObject.cpp             m_cachedScrollPosition = scrollableArea->scrollPosition();
scrollableArea    102 Source/core/accessibility/AXScrollbar.cpp     if (!m_scrollbar->scrollableArea())
scrollableArea    106 Source/core/accessibility/AXScrollbar.cpp     m_scrollbar->scrollableArea()->scrollToOffsetWithoutAnimation(m_scrollbar->orientation(), newValue);
scrollableArea   1077 Source/core/css/SelectorChecker.cpp         return scrollbar->scrollableArea()->isScrollCornerVisible();
scrollableArea   1094 Source/core/frame/FrameView.cpp         if (RenderLayerScrollableArea* area = renderer->enclosingLayer()->scrollableArea()) {
scrollableArea   2518 Source/core/frame/FrameView.cpp         ScrollableArea* scrollableArea = *it;
scrollableArea   2520 Source/core/frame/FrameView.cpp         if (!scrollableArea->scrollbarsCanBeActive())
scrollableArea   2523 Source/core/frame/FrameView.cpp         scrollableArea->contentAreaWillPaint();
scrollableArea   3167 Source/core/frame/FrameView.cpp bool FrameView::addScrollableArea(ScrollableArea* scrollableArea)
scrollableArea   3169 Source/core/frame/FrameView.cpp     ASSERT(scrollableArea);
scrollableArea   3172 Source/core/frame/FrameView.cpp     return m_scrollableAreas->add(scrollableArea).isNewEntry;
scrollableArea   3175 Source/core/frame/FrameView.cpp bool FrameView::removeScrollableArea(ScrollableArea* scrollableArea)
scrollableArea   3180 Source/core/frame/FrameView.cpp     ScrollableAreaSet::iterator it = m_scrollableAreas->find(scrollableArea);
scrollableArea   3188 Source/core/frame/FrameView.cpp bool FrameView::containsScrollableArea(const ScrollableArea* scrollableArea) const
scrollableArea   3190 Source/core/frame/FrameView.cpp     ASSERT(scrollableArea);
scrollableArea   3191 Source/core/frame/FrameView.cpp     if (!m_scrollableAreas || !scrollableArea)
scrollableArea   3193 Source/core/frame/FrameView.cpp     return m_scrollableAreas->contains(const_cast<ScrollableArea*>(scrollableArea));
scrollableArea    232 Source/core/html/forms/TextFieldInputType.cpp                     RenderLayerScrollableArea* innerScrollableArea = innerLayer->scrollableArea();
scrollableArea   1271 Source/core/page/EventHandler.cpp         inResizer = layer->scrollableArea() && layer->scrollableArea()->isPointInResizeControl(result.roundedPointInMainFrame(), ResizerForPointer);
scrollableArea   1375 Source/core/page/EventHandler.cpp         if (layer && layer->scrollableArea() && layer->scrollableArea()->isPointInResizeControl(p, ResizerForPointer)) {
scrollableArea   1376 Source/core/page/EventHandler.cpp             m_resizeScrollableArea = layer->scrollableArea();
scrollableArea   1447 Source/core/page/EventHandler.cpp     ScrollableArea* layerScrollableArea = layer->scrollableArea();
scrollableArea   2506 Source/core/page/EventHandler.cpp         if (layer && layer->scrollableArea() && layer->scrollableArea()->isPointInResizeControl(p, ResizerForTouch)) {
scrollableArea   2507 Source/core/page/EventHandler.cpp             m_resizeScrollableArea = layer->scrollableArea();
scrollableArea    693 Source/core/page/FocusController.cpp static void contentAreaDidShowOrHide(ScrollableArea* scrollableArea, bool didShow)
scrollableArea    696 Source/core/page/FocusController.cpp         scrollableArea->contentAreaDidShow();
scrollableArea    698 Source/core/page/FocusController.cpp         scrollableArea->contentAreaDidHide();
scrollableArea    724 Source/core/page/FocusController.cpp             ScrollableArea* scrollableArea = *it;
scrollableArea    725 Source/core/page/FocusController.cpp             ASSERT(scrollableArea->scrollbarsCanBeActive());
scrollableArea    727 Source/core/page/FocusController.cpp             contentAreaDidShowOrHide(scrollableArea, containingWindowIsVisible);
scrollableArea    226 Source/core/page/scrolling/ScrollingCoordinator.cpp void ScrollingCoordinator::willDestroyScrollableArea(ScrollableArea* scrollableArea)
scrollableArea    228 Source/core/page/scrolling/ScrollingCoordinator.cpp     removeWebScrollbarLayer(scrollableArea, HorizontalScrollbar);
scrollableArea    229 Source/core/page/scrolling/ScrollingCoordinator.cpp     removeWebScrollbarLayer(scrollableArea, VerticalScrollbar);
scrollableArea    232 Source/core/page/scrolling/ScrollingCoordinator.cpp void ScrollingCoordinator::removeWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
scrollableArea    235 Source/core/page/scrolling/ScrollingCoordinator.cpp     if (OwnPtr<WebScrollbarLayer> scrollbarLayer = scrollbars.take(scrollableArea))
scrollableArea    281 Source/core/page/scrolling/ScrollingCoordinator.cpp WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer)
scrollableArea    284 Source/core/page/scrolling/ScrollingCoordinator.cpp     return scrollbars.add(scrollableArea, scrollbarLayer).storedValue->value.get();
scrollableArea    287 Source/core/page/scrolling/ScrollingCoordinator.cpp WebScrollbarLayer* ScrollingCoordinator::getWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
scrollableArea    290 Source/core/page/scrolling/ScrollingCoordinator.cpp     return scrollbars.get(scrollableArea);
scrollableArea    293 Source/core/page/scrolling/ScrollingCoordinator.cpp void ScrollingCoordinator::scrollableAreaScrollbarLayerDidChange(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
scrollableArea    309 Source/core/page/scrolling/ScrollingCoordinator.cpp     bool isMainFrame = isForMainFrame(scrollableArea);
scrollableArea    314 Source/core/page/scrolling/ScrollingCoordinator.cpp         ? scrollableArea->layerForHorizontalScrollbar()
scrollableArea    315 Source/core/page/scrolling/ScrollingCoordinator.cpp         : scrollableArea->layerForVerticalScrollbar();
scrollableArea    318 Source/core/page/scrolling/ScrollingCoordinator.cpp         Scrollbar* scrollbar = orientation == HorizontalScrollbar ? scrollableArea->horizontalScrollbar() : scrollableArea->verticalScrollbar();
scrollableArea    324 Source/core/page/scrolling/ScrollingCoordinator.cpp         WebScrollbarLayer* scrollbarLayer = getWebScrollbarLayer(scrollableArea, orientation);
scrollableArea    331 Source/core/page/scrolling/ScrollingCoordinator.cpp                 webScrollbarLayer = createSolidColorScrollbarLayer(orientation, scrollbar->theme()->thumbThickness(scrollbar), scrollableArea->shouldPlaceVerticalScrollbarOnLeft());
scrollableArea    335 Source/core/page/scrolling/ScrollingCoordinator.cpp             scrollbarLayer = addWebScrollbarLayer(scrollableArea, orientation, webScrollbarLayer.release());
scrollableArea    345 Source/core/page/scrolling/ScrollingCoordinator.cpp         WebLayer* scrollLayer = toWebLayer(scrollableArea->layerForScrolling());
scrollableArea    346 Source/core/page/scrolling/ScrollingCoordinator.cpp         WebLayer* containerLayer = toWebLayer(scrollableArea->layerForContainer());
scrollableArea    349 Source/core/page/scrolling/ScrollingCoordinator.cpp         removeWebScrollbarLayer(scrollableArea, orientation);
scrollableArea    352 Source/core/page/scrolling/ScrollingCoordinator.cpp bool ScrollingCoordinator::scrollableAreaScrollLayerDidChange(ScrollableArea* scrollableArea)
scrollableArea    354 Source/core/page/scrolling/ScrollingCoordinator.cpp     GraphicsLayer* scrollLayer = scrollableArea->layerForScrolling();
scrollableArea    359 Source/core/page/scrolling/ScrollingCoordinator.cpp         bool layerScrollShouldFireGraphicsLayerDidScroll = isForMainFrame(scrollableArea) && !pinchVirtualViewportEnabled;
scrollableArea    360 Source/core/page/scrolling/ScrollingCoordinator.cpp         scrollLayer->setScrollableArea(scrollableArea, layerScrollShouldFireGraphicsLayerDidScroll);
scrollableArea    363 Source/core/page/scrolling/ScrollingCoordinator.cpp     WebLayer* webLayer = toWebLayer(scrollableArea->layerForScrolling());
scrollableArea    364 Source/core/page/scrolling/ScrollingCoordinator.cpp     WebLayer* containerLayer = toWebLayer(scrollableArea->layerForContainer());
scrollableArea    367 Source/core/page/scrolling/ScrollingCoordinator.cpp         webLayer->setScrollPosition(IntPoint(scrollableArea->scrollPosition() - scrollableArea->minimumScrollPosition()));
scrollableArea    368 Source/core/page/scrolling/ScrollingCoordinator.cpp         webLayer->setBounds(scrollableArea->contentsSize());
scrollableArea    369 Source/core/page/scrolling/ScrollingCoordinator.cpp         bool canScrollX = scrollableArea->userInputScrollable(HorizontalScrollbar);
scrollableArea    370 Source/core/page/scrolling/ScrollingCoordinator.cpp         bool canScrollY = scrollableArea->userInputScrollable(VerticalScrollbar);
scrollableArea    373 Source/core/page/scrolling/ScrollingCoordinator.cpp     if (WebScrollbarLayer* scrollbarLayer = getWebScrollbarLayer(scrollableArea, HorizontalScrollbar)) {
scrollableArea    374 Source/core/page/scrolling/ScrollingCoordinator.cpp         GraphicsLayer* horizontalScrollbarLayer = scrollableArea->layerForHorizontalScrollbar();
scrollableArea    378 Source/core/page/scrolling/ScrollingCoordinator.cpp     if (WebScrollbarLayer* scrollbarLayer = getWebScrollbarLayer(scrollableArea, VerticalScrollbar)) {
scrollableArea    379 Source/core/page/scrolling/ScrollingCoordinator.cpp         GraphicsLayer* verticalScrollbarLayer = scrollableArea->layerForVerticalScrollbar();
scrollableArea    686 Source/core/page/scrolling/ScrollingCoordinator.cpp             ScrollableArea* scrollableArea = *it;
scrollableArea    688 Source/core/page/scrolling/ScrollingCoordinator.cpp             if (scrollableArea->usesCompositedScrolling())
scrollableArea    690 Source/core/page/scrolling/ScrollingCoordinator.cpp             IntRect box = scrollableArea->scrollableAreaBoundingBox();
scrollableArea    704 Source/core/page/scrolling/ScrollingCoordinator.cpp             IntRect corner = box->layer()->scrollableArea()->touchResizerCornerRect(bounds);
scrollableArea    843 Source/core/page/scrolling/ScrollingCoordinator.cpp bool ScrollingCoordinator::isForMainFrame(ScrollableArea* scrollableArea) const
scrollableArea    845 Source/core/page/scrolling/ScrollingCoordinator.cpp     return scrollableArea == m_page->mainFrame()->view();
scrollableArea   1256 Source/core/rendering/RenderBlock.cpp                 block->layer()->scrollableArea()->updateAfterLayout();
scrollableArea   1270 Source/core/rendering/RenderBlock.cpp             layer()->scrollableArea()->updateAfterLayout();
scrollableArea   1277 Source/core/rendering/RenderBlock.cpp             layer()->scrollableArea()->updateAfterLayout();
scrollableArea   1761 Source/core/rendering/RenderBlock.cpp         layer()->scrollableArea()->paintOverflowControls(paintInfo.context, roundedIntPoint(adjustedPaintOffset), paintInfo.rect, false /* paintingOverlayControls */);
scrollableArea   2732 Source/core/rendering/RenderBlock.cpp     return layer()->scrollableArea()->hitTestOverflowControls(result, roundedIntPoint(locationInContainer - toLayoutSize(accumulatedOffset)));
scrollableArea   3749 Source/core/rendering/RenderBlock.cpp         bool ignoreBaseline = (layer() && layer()->scrollableArea() && (isMarquee() || (direction == HorizontalLine ? (layer()->scrollableArea()->verticalScrollbar() || layer()->scrollableArea()->scrollYOffset())
scrollableArea   3750 Source/core/rendering/RenderBlock.cpp             : (layer()->scrollableArea()->horizontalScrollbar() || layer()->scrollableArea()->scrollXOffset())))) || (isWritingModeRoot() && !isRubyRun());
scrollableArea    203 Source/core/rendering/RenderBox.cpp         if (int left = layer()->scrollableArea()->scrollXOffset()) {
scrollableArea    205 Source/core/rendering/RenderBox.cpp             layer()->scrollableArea()->scrollToXOffset(left);
scrollableArea    207 Source/core/rendering/RenderBox.cpp         if (int top = layer()->scrollableArea()->scrollYOffset()) {
scrollableArea    209 Source/core/rendering/RenderBox.cpp             layer()->scrollableArea()->scrollToYOffset(top);
scrollableArea    393 Source/core/rendering/RenderBox.cpp         return layer()->scrollableArea()->scrollWidth();
scrollableArea    404 Source/core/rendering/RenderBox.cpp         return layer()->scrollableArea()->scrollHeight();
scrollableArea    412 Source/core/rendering/RenderBox.cpp     return hasOverflowClip() ? layer()->scrollableArea()->scrollXOffset() : 0;
scrollableArea    417 Source/core/rendering/RenderBox.cpp     return hasOverflowClip() ? layer()->scrollableArea()->scrollYOffset() : 0;
scrollableArea    427 Source/core/rendering/RenderBox.cpp         layer()->scrollableArea()->scrollToXOffset(newLeft, ScrollOffsetClamped);
scrollableArea    436 Source/core/rendering/RenderBox.cpp         layer()->scrollableArea()->scrollToYOffset(newTop, ScrollOffsetClamped);
scrollableArea    446 Source/core/rendering/RenderBox.cpp     layer()->scrollableArea()->scrollToOffset(offset, ScrollOffsetClamped);
scrollableArea    484 Source/core/rendering/RenderBox.cpp         newRect = layer()->scrollableArea()->exposeRect(rect, alignX, alignY);
scrollableArea    681 Source/core/rendering/RenderBox.cpp     return layer()->scrollableArea()->verticalScrollbarWidth();
scrollableArea    689 Source/core/rendering/RenderBox.cpp     return layer()->scrollableArea()->horizontalScrollbarHeight();
scrollableArea    698 Source/core/rendering/RenderBox.cpp         ASSERT(layer()->scrollableArea() && layer()->scrollableArea()->hasVerticalScrollbar());
scrollableArea    703 Source/core/rendering/RenderBox.cpp         ASSERT(layer()->scrollableArea() && layer()->scrollableArea()->hasHorizontalScrollbar());
scrollableArea    718 Source/core/rendering/RenderBox.cpp     if (!layer() || !layer()->scrollableArea())
scrollableArea    721 Source/core/rendering/RenderBox.cpp     return layer()->scrollableArea()->scroll(direction, granularity, delta);
scrollableArea    747 Source/core/rendering/RenderBox.cpp     return hasOverflowClip() && hasLayer() && layer()->scrollableArea()->usesCompositedScrolling();
scrollableArea    876 Source/core/rendering/RenderBox.cpp         IntSize newScrollOffset = layer()->scrollableArea()->adjustedScrollOffset() + delta;
scrollableArea    877 Source/core/rendering/RenderBox.cpp         layer()->scrollableArea()->scrollToOffset(newScrollOffset, clamp);
scrollableArea    880 Source/core/rendering/RenderBox.cpp         IntSize remainingScrollOffset = newScrollOffset - layer()->scrollableArea()->adjustedScrollOffset();
scrollableArea    908 Source/core/rendering/RenderBox.cpp     return layer()->scrollableArea()->scrollOffset();
scrollableArea   1697 Source/core/rendering/RenderBox.cpp         clipRect.move(layer()->scrollableArea()->verticalScrollbarWidth(relevancy), 0);
scrollableArea   1698 Source/core/rendering/RenderBox.cpp     clipRect.contract(layer()->scrollableArea()->verticalScrollbarWidth(relevancy), layer()->scrollableArea()->horizontalScrollbarHeight(relevancy));
scrollableArea    302 Source/core/rendering/RenderBoxModelObject.cpp         IntSize scrollOffset = containingBlock->layer()->scrollableArea()->adjustedScrollOffset();
scrollableArea    306 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp         layer()->scrollableArea()->updateAfterLayout();
scrollableArea    309 Source/core/rendering/RenderGrid.cpp         layer()->scrollableArea()->updateAfterLayout();
scrollableArea    308 Source/core/rendering/RenderLayer.cpp         scrollableArea()->positionOverflowControls(toIntSize(roundedIntPoint(offsetFromRoot)));
scrollableArea   2593 Source/core/rendering/RenderLayer.cpp         if (RenderLayerScrollableArea* scrollableArea = this->scrollableArea())
scrollableArea   2594 Source/core/rendering/RenderLayer.cpp             scrollableArea->paintOverflowControls(context, roundedIntPoint(toPoint(fragment.layerBounds.location() - renderBoxLocation() + subPixelAccumulationIfNeeded(localPaintingInfo.subPixelAccumulation, compositingState()))), pixelSnappedIntRect(fragment.backgroundRect.rect()), true);
scrollableArea   3326 Source/core/rendering/RenderLayer.cpp         if (!scrollableArea()->usesCompositedScrolling())
scrollableArea   3951 Source/core/rendering/RenderLayer.cpp     if (RenderLayerScrollableArea* scrollableArea = this->scrollableArea())
scrollableArea   3952 Source/core/rendering/RenderLayer.cpp         return scrollableArea->scrollsOverflow();
scrollableArea    450 Source/core/rendering/RenderLayer.h     RenderLayerScrollableArea* scrollableArea() const { return m_scrollableArea.get(); }
scrollableArea     71 Source/core/rendering/RenderLayerModelObject.cpp     return m_layer ? m_layer->scrollableArea() : 0;
scrollableArea     54 Source/core/rendering/RenderLayerModelObject.h     ScrollableArea* scrollableArea() const;
scrollableArea    443 Source/core/rendering/RenderLayerStackingNode.cpp     return layer()->scrollableArea() && layer()->scrollableArea()->adjustForForceCompositedScrollingMode(m_needsToBeStackingContainer);
scrollableArea    168 Source/core/rendering/RenderMarquee.cpp             layer()->scrollableArea()->scrollToOffset(IntSize(m_start, 0));
scrollableArea    170 Source/core/rendering/RenderMarquee.cpp             layer()->scrollableArea()->scrollToOffset(IntSize(0, m_start));
scrollableArea    282 Source/core/rendering/RenderMarquee.cpp             layer()->scrollableArea()->scrollToXOffset(m_start);
scrollableArea    284 Source/core/rendering/RenderMarquee.cpp             layer()->scrollableArea()->scrollToYOffset(m_start);
scrollableArea    307 Source/core/rendering/RenderMarquee.cpp         int currentPos = (isHorizontal() ? layer()->scrollableArea()->scrollXOffset() : layer()->scrollableArea()->scrollYOffset());
scrollableArea    324 Source/core/rendering/RenderMarquee.cpp         layer()->scrollableArea()->scrollToXOffset(newPos);
scrollableArea    326 Source/core/rendering/RenderMarquee.cpp         layer()->scrollableArea()->scrollToYOffset(newPos);
scrollableArea     38 Source/core/rendering/RenderScrollbar.cpp PassRefPtr<Scrollbar> RenderScrollbar::createCustomScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, LocalFrame* owningFrame)
scrollableArea     40 Source/core/rendering/RenderScrollbar.cpp     return adoptRef(new RenderScrollbar(scrollableArea, orientation, ownerNode, owningFrame));
scrollableArea     43 Source/core/rendering/RenderScrollbar.cpp RenderScrollbar::RenderScrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, Node* ownerNode, LocalFrame* owningFrame)
scrollableArea     44 Source/core/rendering/RenderScrollbar.cpp     : Scrollbar(scrollableArea, orientation, RegularScrollbar, RenderScrollbarTheme::renderScrollbarTheme())
scrollableArea    537 Source/core/rendering/RenderTreeAsText.cpp         if (l.scrollableArea()->scrollXOffset())
scrollableArea    538 Source/core/rendering/RenderTreeAsText.cpp             ts << " scrollX " << l.scrollableArea()->scrollXOffset();
scrollableArea    539 Source/core/rendering/RenderTreeAsText.cpp         if (l.scrollableArea()->scrollYOffset())
scrollableArea    540 Source/core/rendering/RenderTreeAsText.cpp             ts << " scrollY " << l.scrollableArea()->scrollYOffset();
scrollableArea    251 Source/core/rendering/RenderWidget.cpp         layer()->scrollableArea()->paintResizer(paintInfo.context, roundedIntPoint(adjustedPaintOffset), paintInfo.rect);
scrollableArea    818 Source/core/rendering/compositing/CompositedLayerMapping.cpp         IntSize adjustedScrollOffset = m_owningLayer.scrollableArea()->adjustedScrollOffset();
scrollableArea    861 Source/core/rendering/compositing/CompositedLayerMapping.cpp     if (m_owningLayer.scrollableArea() && m_owningLayer.scrollableArea()->scrollsOverflow())
scrollableArea    862 Source/core/rendering/compositing/CompositedLayerMapping.cpp         m_owningLayer.scrollableArea()->positionOverflowControls();
scrollableArea   1101 Source/core/rendering/compositing/CompositedLayerMapping.cpp             scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_owningLayer.scrollableArea(), HorizontalScrollbar);
scrollableArea   1103 Source/core/rendering/compositing/CompositedLayerMapping.cpp             scrollingCoordinator->scrollableAreaScrollbarLayerDidChange(m_owningLayer.scrollableArea(), VerticalScrollbar);
scrollableArea   1113 Source/core/rendering/compositing/CompositedLayerMapping.cpp         Scrollbar* hBar = m_owningLayer.scrollableArea()->horizontalScrollbar();
scrollableArea   1124 Source/core/rendering/compositing/CompositedLayerMapping.cpp         Scrollbar* vBar = m_owningLayer.scrollableArea()->verticalScrollbar();
scrollableArea   1135 Source/core/rendering/compositing/CompositedLayerMapping.cpp         const LayoutRect& scrollCornerAndResizer = m_owningLayer.scrollableArea()->scrollCornerAndResizerRect();
scrollableArea   1372 Source/core/rendering/compositing/CompositedLayerMapping.cpp                 scrollingCoordinator->scrollableAreaScrollLayerDidChange(m_owningLayer.scrollableArea());
scrollableArea   1379 Source/core/rendering/compositing/CompositedLayerMapping.cpp             scrollingCoordinator->scrollableAreaScrollLayerDidChange(m_owningLayer.scrollableArea());
scrollableArea   2004 Source/core/rendering/compositing/CompositedLayerMapping.cpp         paintScrollbar(m_owningLayer.scrollableArea()->horizontalScrollbar(), context, clip);
scrollableArea   2006 Source/core/rendering/compositing/CompositedLayerMapping.cpp         paintScrollbar(m_owningLayer.scrollableArea()->verticalScrollbar(), context, clip);
scrollableArea   2008 Source/core/rendering/compositing/CompositedLayerMapping.cpp         const IntRect& scrollCornerAndResizer = m_owningLayer.scrollableArea()->scrollCornerAndResizerRect();
scrollableArea   2013 Source/core/rendering/compositing/CompositedLayerMapping.cpp         m_owningLayer.scrollableArea()->paintScrollCorner(&context, IntPoint(), transformedClip);
scrollableArea   2014 Source/core/rendering/compositing/CompositedLayerMapping.cpp         m_owningLayer.scrollableArea()->paintResizer(&context, IntPoint(), transformedClip);
scrollableArea    220 Source/core/rendering/compositing/CompositedLayerMapping.h     bool requiresHorizontalScrollbarLayer() const { return m_owningLayer.scrollableArea() && m_owningLayer.scrollableArea()->horizontalScrollbar(); }
scrollableArea    221 Source/core/rendering/compositing/CompositedLayerMapping.h     bool requiresVerticalScrollbarLayer() const { return m_owningLayer.scrollableArea() && m_owningLayer.scrollableArea()->verticalScrollbar(); }
scrollableArea    222 Source/core/rendering/compositing/CompositedLayerMapping.h     bool requiresScrollCornerLayer() const { return m_owningLayer.scrollableArea() && !m_owningLayer.scrollableArea()->scrollCornerAndResizerRect().isEmpty(); }
scrollableArea    265 Source/core/rendering/compositing/CompositingReasonFinder.cpp         if (frameView->containsScrollableArea(ancestor->scrollableArea()))
scrollableArea    149 Source/core/rendering/compositing/GraphicsLayerUpdater.cpp             layer.scrollableArea()->positionOverflowControls();
scrollableArea   1335 Source/core/rendering/compositing/RenderLayerCompositor.cpp         return scrollingCoordinator->scrollableAreaScrollLayerDidChange(layer->scrollableArea());
scrollableArea   1313 Source/core/testing/Internals.cpp     GraphicsLayer* layerForScrolling = searchRoot->scrollableArea() ? searchRoot->scrollableArea()->layerForScrolling() : 0;
scrollableArea   1319 Source/core/testing/Internals.cpp     GraphicsLayer* layerForHorizontalScrollbar = searchRoot->scrollableArea() ? searchRoot->scrollableArea()->layerForHorizontalScrollbar() : 0;
scrollableArea   1325 Source/core/testing/Internals.cpp     GraphicsLayer* layerForVerticalScrollbar = searchRoot->scrollableArea() ? searchRoot->scrollableArea()->layerForVerticalScrollbar() : 0;
scrollableArea   1331 Source/core/testing/Internals.cpp     GraphicsLayer* layerForScrollCorner = searchRoot->scrollableArea() ? searchRoot->scrollableArea()->layerForScrollCorner() : 0;
scrollableArea   1853 Source/core/testing/Internals.cpp         layer->scrollableArea()->setForceNeedsCompositedScrolling(static_cast<ForceNeedsCompositedScrollingMode>(needsCompositedScrolling));
scrollableArea   1176 Source/platform/graphics/GraphicsLayer.cpp void GraphicsLayer::setScrollableArea(ScrollableArea* scrollableArea, bool isMainFrame)
scrollableArea   1178 Source/platform/graphics/GraphicsLayer.cpp     if (m_scrollableArea == scrollableArea)
scrollableArea   1181 Source/platform/graphics/GraphicsLayer.cpp     m_scrollableArea = scrollableArea;
scrollableArea    286 Source/platform/graphics/GraphicsLayer.h     ScrollableArea* scrollableArea() const { return m_scrollableArea; }
scrollableArea    158 Source/platform/graphics/GraphicsLayerTest.cpp     FakeScrollableArea scrollableArea;
scrollableArea    159 Source/platform/graphics/GraphicsLayerTest.cpp     m_graphicsLayer->setScrollableArea(&scrollableArea, false);
scrollableArea    165 Source/platform/graphics/GraphicsLayerTest.cpp     EXPECT_EQ(scrollPosition, WebPoint(scrollableArea.scrollPosition()));
scrollableArea     43 Source/platform/scroll/ScrollAnimator.cpp ScrollAnimator::ScrollAnimator(ScrollableArea* scrollableArea)
scrollableArea     44 Source/platform/scroll/ScrollAnimator.cpp     : m_scrollableArea(scrollableArea)
scrollableArea     63 Source/platform/scroll/ScrollAnimator.h     ScrollableArea* scrollableArea() const { return m_scrollableArea; }
scrollableArea     50 Source/platform/scroll/ScrollAnimatorNone.cpp PassOwnPtr<ScrollAnimator> ScrollAnimator::create(ScrollableArea* scrollableArea)
scrollableArea     52 Source/platform/scroll/ScrollAnimatorNone.cpp     if (scrollableArea && scrollableArea->scrollAnimatorEnabled())
scrollableArea     53 Source/platform/scroll/ScrollAnimatorNone.cpp         return adoptPtr(new ScrollAnimatorNone(scrollableArea));
scrollableArea     54 Source/platform/scroll/ScrollAnimatorNone.cpp     return adoptPtr(new ScrollAnimator(scrollableArea));
scrollableArea    367 Source/platform/scroll/ScrollAnimatorNone.cpp ScrollAnimatorNone::ScrollAnimatorNone(ScrollableArea* scrollableArea)
scrollableArea    368 Source/platform/scroll/ScrollAnimatorNone.cpp     : ScrollAnimator(scrollableArea)
scrollableArea    369 Source/platform/scroll/ScrollAnimatorNone.cpp     , m_horizontalData(this, &m_currentPosX, scrollableArea->visibleWidth())
scrollableArea    370 Source/platform/scroll/ScrollAnimatorNone.cpp     , m_verticalData(this, &m_currentPosY, scrollableArea->visibleHeight())
scrollableArea    481 Source/platform/scroll/ScrollAnimatorNone.cpp     m_horizontalData.updateVisibleLength(scrollableArea()->visibleWidth());
scrollableArea    482 Source/platform/scroll/ScrollAnimatorNone.cpp     m_verticalData.updateVisibleLength(scrollableArea()->visibleHeight());
scrollableArea    511 Source/platform/scroll/ScrollAnimatorNone.cpp     if (scrollableArea()->scheduleAnimation())
scrollableArea     48 Source/platform/scroll/Scrollbar.cpp PassRefPtr<Scrollbar> Scrollbar::create(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize size)
scrollableArea     50 Source/platform/scroll/Scrollbar.cpp     return adoptRef(new Scrollbar(scrollableArea, orientation, size));
scrollableArea     53 Source/platform/scroll/Scrollbar.cpp Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme)
scrollableArea     54 Source/platform/scroll/Scrollbar.cpp     : m_scrollableArea(scrollableArea)
scrollableArea    105 Source/platform/scroll/Scrollbar.h     ScrollableArea* scrollableArea() const { return m_scrollableArea; }
scrollableArea    134 Source/web/LinkHighlight.cpp         if (renderLayer->scrollableArea() && renderLayer->scrollableArea()->usesCompositedScrolling()) {
scrollableArea     84 Source/web/tests/ScrollAnimatorNoneTest.cpp     MockScrollAnimatorNone(ScrollableArea* scrollableArea)
scrollableArea     85 Source/web/tests/ScrollAnimatorNoneTest.cpp         : ScrollAnimatorNone(scrollableArea) { }
scrollableArea    115 Source/web/tests/ScrollAnimatorNoneTest.cpp     MockScrollableArea scrollableArea(true);
scrollableArea    116 Source/web/tests/ScrollAnimatorNoneTest.cpp     MockScrollAnimatorNone scrollAnimatorNone(&scrollableArea);
scrollableArea    118 Source/web/tests/ScrollAnimatorNoneTest.cpp     EXPECT_CALL(scrollableArea, scrollSize(_)).Times(AtLeast(1)).WillRepeatedly(Return(1000));
scrollableArea    119 Source/web/tests/ScrollAnimatorNoneTest.cpp     EXPECT_CALL(scrollableArea, minimumScrollPosition()).Times(AtLeast(1)).WillRepeatedly(Return(IntPoint()));
scrollableArea    120 Source/web/tests/ScrollAnimatorNoneTest.cpp     EXPECT_CALL(scrollableArea, maximumScrollPosition()).Times(AtLeast(1)).WillRepeatedly(Return(IntPoint(1000, 1000)));
scrollableArea    121 Source/web/tests/ScrollAnimatorNoneTest.cpp     EXPECT_CALL(scrollableArea, setScrollOffset(_)).Times(4);
scrollableArea    150 Source/web/tests/ScrollAnimatorNoneTest.cpp     MockScrollableArea scrollableArea(false);
scrollableArea    151 Source/web/tests/ScrollAnimatorNoneTest.cpp     MockScrollAnimatorNone scrollAnimatorNone(&scrollableArea);
scrollableArea    153 Source/web/tests/ScrollAnimatorNoneTest.cpp     EXPECT_CALL(scrollableArea, minimumScrollPosition()).Times(AtLeast(1)).WillRepeatedly(Return(IntPoint()));
scrollableArea    154 Source/web/tests/ScrollAnimatorNoneTest.cpp     EXPECT_CALL(scrollableArea, maximumScrollPosition()).Times(AtLeast(1)).WillRepeatedly(Return(IntPoint(1000, 1000)));
scrollableArea    155 Source/web/tests/ScrollAnimatorNoneTest.cpp     EXPECT_CALL(scrollableArea, setScrollOffset(_)).Times(4);
scrollableArea    311 Source/web/tests/ScrollingCoordinatorChromiumTest.cpp     ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea());
scrollableArea    351 Source/web/tests/ScrollingCoordinatorChromiumTest.cpp     ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea());
scrollableArea    366 Source/web/tests/ScrollingCoordinatorChromiumTest.cpp     ASSERT_TRUE(box->scrollableArea()->usesCompositedScrolling());
scrollableArea    374 Source/web/tests/ScrollingCoordinatorChromiumTest.cpp     ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea());
scrollableArea    412 Source/web/tests/ScrollingCoordinatorChromiumTest.cpp     ASSERT_EQ(innerFrameView, scrollLayer->scrollableArea());
scrollableArea    456 Source/web/tests/ScrollingCoordinatorChromiumTest.cpp     ASSERT_EQ(innerFrameView, scrollLayer->scrollableArea());