clientWidth       196 Source/core/dom/Element.h     int clientWidth();
clientWidth       385 Source/core/page/SpatialNavigation.cpp             ASSERT(container->renderBox()->scrollWidth() > (container->renderBox()->scrollLeft() + container->renderBox()->clientWidth()));
clientWidth       386 Source/core/page/SpatialNavigation.cpp             dx = std::min<LayoutUnit>(ScrollableArea::pixelsPerLineStep(), container->renderBox()->scrollWidth() - (container->renderBox()->scrollLeft() + container->renderBox()->clientWidth()));
clientWidth       464 Source/core/page/SpatialNavigation.cpp         return (container->renderer()->style()->overflowX() != OHIDDEN && container->renderBox()->scrollLeft() + container->renderBox()->clientWidth() < container->renderBox()->scrollWidth());
clientWidth       350 Source/core/rendering/RenderBox.cpp     return snapSizeToPixel(clientWidth(), x() + clientLeft());
clientWidth       397 Source/core/rendering/RenderBox.cpp         return snapSizeToPixel(max(clientWidth(), layoutOverflowRect().maxX() - borderLeft()), x() + clientLeft());
clientWidth       398 Source/core/rendering/RenderBox.cpp     return clientWidth() - min<LayoutUnit>(0, layoutOverflowRect().x() - borderLeft());
clientWidth       726 Source/core/rendering/RenderBox.cpp     return canBeProgramaticallyScrolled() && (scrollHeight() != clientHeight() || scrollWidth() != clientWidth());
clientWidth       193 Source/core/rendering/RenderBox.h     LayoutRect computedCSSContentBoxRect() const { return LayoutRect(borderLeft() + computedCSSPaddingLeft(), borderTop() + computedCSSPaddingTop(), clientWidth() - computedCSSPaddingLeft() - computedCSSPaddingRight(), clientHeight() - computedCSSPaddingTop() - computedCSSPaddingBottom()); }
clientWidth       237 Source/core/rendering/RenderBox.h     LayoutUnit contentWidth() const { return clientWidth() - paddingLeft() - paddingRight(); }
clientWidth       257 Source/core/rendering/RenderBox.h     LayoutUnit clientWidth() const;
clientWidth       259 Source/core/rendering/RenderBox.h     LayoutUnit clientLogicalWidth() const { return style()->isHorizontalWritingMode() ? clientWidth() : clientHeight(); }
clientWidth       260 Source/core/rendering/RenderBox.h     LayoutUnit clientLogicalHeight() const { return style()->isHorizontalWritingMode() ? clientHeight() : clientWidth(); }
clientWidth       262 Source/core/rendering/RenderBox.h     LayoutRect clientBoxRect() const { return LayoutRect(clientLeft(), clientTop(), clientWidth(), clientHeight()); }
clientWidth       489 Source/core/rendering/RenderBox.h     bool hasScrollableOverflowX() const { return scrollsOverflowX() && scrollWidth() != clientWidth(); }
clientWidth       651 Source/core/rendering/RenderLayerScrollableArea.cpp             int clientWidth = m_box->pixelSnappedClientWidth();
clientWidth       652 Source/core/rendering/RenderLayerScrollableArea.cpp             horizontalScrollbar->setProportion(clientWidth, overflowRect().width());
clientWidth      1392 Source/core/rendering/RenderLayerScrollableArea.cpp     LayoutRect layerBounds(0, 0, m_box->clientWidth(), m_box->clientHeight());
clientWidth       122 Source/core/rendering/RenderMarquee.cpp         LayoutUnit clientWidth = this->clientWidth();
clientWidth       132 Source/core/rendering/RenderMarquee.cpp                 return max<LayoutUnit>(0, ltr ? (contentWidth - clientWidth) : (clientWidth - contentWidth));
clientWidth       134 Source/core/rendering/RenderMarquee.cpp                 return ltr ? contentWidth : clientWidth;
clientWidth       138 Source/core/rendering/RenderMarquee.cpp                 return min<LayoutUnit>(0, ltr ? (contentWidth - clientWidth) : (clientWidth - contentWidth));
clientWidth       140 Source/core/rendering/RenderMarquee.cpp                 return ltr ? -clientWidth : -contentWidth;
clientWidth       305 Source/core/rendering/RenderMarquee.cpp         int clientSize = (isHorizontal() ? clientWidth() : clientHeight());
clientWidth       438 Source/core/rendering/RenderReplaced.cpp                 logicalWidth = max<LayoutUnit>(0, logicalWidth - (marginStart + marginEnd + (width() - clientWidth())));
clientWidth       440 Source/platform/scroll/ScrollView.cpp         int clientWidth = visibleWidth();
clientWidth       452 Source/platform/scroll/ScrollView.cpp         m_horizontalScrollbar->setEnabled(contentsWidth() > clientWidth);
clientWidth       453 Source/platform/scroll/ScrollView.cpp         m_horizontalScrollbar->setProportion(clientWidth, contentsWidth());