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

  /external/webkit/WebCore/rendering/
RenderBox.h 84 IntRect visibleOverflowRect() const { return hasOverflowClip() ? visualOverflowRect() : (m_overflow ? m_overflow->visibleOverflowRect() : borderBoxRect()); }
85 int topVisibleOverflow() const { return hasOverflowClip() ? topVisualOverflow() : std::min(topLayoutOverflow(), topVisualOverflow()); }
86 int bottomVisibleOverflow() const { return hasOverflowClip() ? bottomVisualOverflow() : std::max(bottomLayoutOverflow(), bottomVisualOverflow()); }
87 int leftVisibleOverflow() const { return hasOverflowClip() ? leftVisualOverflow() : std::min(leftLayoutOverflow(), leftVisualOverflow()); }
88 int rightVisibleOverflow() const { return hasOverflowClip() ? rightVisualOverflow() : std::max(rightLayoutOverflow(), rightVisualOverflow()); }
254 bool hasAutoVerticalScrollbar() const { return hasOverflowClip() && (style()->overflowY() == OAUTO || style()->overflowY() == OOVERLAY); }
255 bool hasAutoHorizontalScrollbar() const { return hasOverflowClip() && (style()->overflowX() == OAUTO || style()->overflowX() == OOVERLAY); }
257 bool scrollsOverflowX() const { return hasOverflowClip() && (style()->overflowX() == OSCROLL || hasAutoHorizontalScrollbar()); }
258 bool scrollsOverflowY() const { return hasOverflowClip() && (style()->overflowY() == OSCROLL || hasAutoVerticalScrollbar()); }
325 bool includeVerticalScrollbarSize() const { return hasOverflowClip() && (style()->overflowY() == OSCROLL || style()->overflowY() == OAUTO);
    [all...]
RenderTableRow.h 59 virtual bool requiresLayer() const { return isTransparent() || hasOverflowClip() || hasTransform() || hasMask(); }
LayoutState.cpp 65 if (renderer->hasOverflowClip()) {
RenderBoxModelObject.h 62 virtual bool requiresLayer() const { return isRoot() || isPositioned() || isRelPositioned() || isTransparent() || hasOverflowClip() || hasTransform() || hasMask() || hasReflection(); }
RenderTableCell.h 122 virtual bool requiresLayer() const { return isPositioned() || isTransparent() || hasOverflowClip() || hasTransform() || hasMask() || hasReflection(); }
RenderBox.cpp 139 s_hadOverflowClip = hasOverflowClip();
173 if (hasOverflowClip() && oldStyle && style() && oldStyle->effectiveZoom() != style()->effectiveZoom()) {
267 if (hasOverflowClip())
277 if (hasOverflowClip())
285 return hasOverflowClip() ? layer()->scrollXOffset() : 0;
290 return hasOverflowClip() ? layer()->scrollYOffset() : 0;
295 if (hasOverflowClip())
301 if (hasOverflowClip())
442 return (hasOverflowClip() && (scrollsOverflow() || (node() && node()->isContentEditable()))) || (node() && node()->isDocumentNode());
860 bool isOverflowClip = hasOverflowClip() && !layer()->isSelfPaintingLayer()
    [all...]
RenderBlock.cpp 98 !block->isFloating() && !block->isTableCell() && !block->hasOverflowClip() && !block->isInlineBlockOrInlineTable();
645 if (block->hasOverflowClip()) {
654 if (hasOverflowClip()) {
    [all...]
RenderLayer.cpp 597 if (!box->hasOverflowClip()) {
    [all...]
TextControlInnerElements.cpp 73 if (renderer->hasOverflowClip())
InlineFlowBox.cpp 328 int childLeftOverflow = box->hasOverflowClip() ? 0 : box->leftLayoutOverflow();
329 int childRightOverflow = box->hasOverflowClip() ? curr->width() : box->rightLayoutOverflow();
587 int childTopOverflow = box->hasOverflowClip() ? 0 : box->topLayoutOverflow();
588 int childBottomOverflow = box->hasOverflowClip() ? curr->height() : box->bottomLayoutOverflow();
    [all...]
RenderTableSection.cpp 747 if (!includeOverflowInterior && hasOverflowClip())
765 if (!includeOverflowInterior && hasOverflowClip())
783 if (!includeOverflowInterior && hasOverflowClip())
    [all...]
RenderLayerCompositor.cpp 335 if (layer->renderer()->hasOverflowClip() || layer->renderer()->hasMask()) {
434 if (curr->renderer()->hasOverflowClip())
    [all...]
RenderInline.cpp 598 if (cb->hasOverflowClip()) {
687 if (o->hasOverflowClip()) {
729 if (container->hasOverflowClip())
    [all...]
RenderFlexibleBox.cpp 200 if (hasOverflowClip() && style()->overflowY() == OSCROLL)
299 if (hasOverflowClip())
    [all...]
RenderObject.h 400 bool hasOverflowClip() const { return m_hasOverflowClip; }
    [all...]
RenderObject.cpp     [all...]
RenderTreeAsText.cpp 475 if (l.renderer()->hasOverflowClip()) {
RenderBlockLineLayout.cpp 553 bool hasTextOverflow = style()->textOverflow() && hasOverflowClip();
    [all...]
RenderTable.cpp     [all...]
RenderBoxModelObject.cpp 475 bool clippedWithLocalScrolling = hasOverflowClip() && bgLayer->attachment() == LocalBackgroundAttachment;
    [all...]
  /external/webkit/WebCore/editing/
DeleteButtonController.cpp 85 if (renderer->hasOverflowClip())
visible_units.cpp 608 if (containingBlock->hasOverflowClip())
709 if (containingBlock->hasOverflowClip())
    [all...]
TextIterator.cpp 207 if (!renderer || !renderer->isBox() || !renderer->hasOverflowClip())
    [all...]
  /external/webkit/WebKit/android/nav/
CacheBuilder.cpp 446 renderer->hasOverflowClip() ? "true" : "false", tabindex,
    [all...]
  /external/webkit/WebCore/dom/
Element.cpp 224 if (rend->hasOverflowClip()) {
    [all...]

Completed in 451 milliseconds