Home
last modified time | relevance | path

Searched refs:isPositioned (Results 1 – 21 of 21) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderFlexibleBox.cpp141 if (child->isPositioned() || child->style()->visibility() == COLLAPSE) in calcHorizontalPrefWidths()
154 if (child->isPositioned() || child->style()->visibility() == COLLAPSE) in calcVerticalPrefWidths()
303 if (!child->isPositioned() && child->style()->boxFlex() > 0.0f) { in gatherFlexChildrenInfo()
357 if (child->isPositioned()) in layoutHorizontalBox()
405 if (child->isPositioned()) { in layoutHorizontalBox()
555 if (child->isPositioned()) in layoutHorizontalBox()
566 if (child->isPositioned()) in layoutHorizontalBox()
587 if (child->isPositioned()) in layoutHorizontalBox()
640 if (child->isPositioned()) { in layoutVerticalBox()
801 if (child->isPositioned()) in layoutVerticalBox()
[all …]
DInlineIterator.h145 …line && !current->isFloating() && !current->isReplaced() && !current->isPositioned() && !current->…
178 if (next->isText() || next->isFloating() || next->isReplaced() || next->isPositioned()
209 if (o && !o->isText() && !o->isReplaced() && !o->isFloating() && !o->isPositioned())
DLayoutState.cpp46 bool fixed = renderer->isPositioned() && renderer->style()->position() == FixedPosition; in LayoutState()
54 if (renderer->isPositioned() && !fixed) { in LayoutState()
DInlineFlowBox.cpp108 if (descendantsHaveSameLineHeightAndBaseline() && !child->renderer()->isPositioned()) { in addToLine()
145 if (!child->renderer()->isPositioned()) { in addToLine()
369 if (curr->renderer()->isPositioned()) { in placeBoxesInInlineDirection()
423 if (curr->renderer()->isPositioned()) in requiresIdeographicBaseline()
456 if (curr->renderer()->isPositioned()) in adjustMaxAscentAndDescent()
523 if (curr->renderer()->isPositioned()) in computeLogicalBoxHeights()
592 if (curr->renderer()->isPositioned()) in placeBoxesInBlockDirection()
712 if (curr->renderer()->isPositioned()) in flipLinesInBlockDirection()
842 if (curr->renderer()->isPositioned()) in computeOverflow()
1310 if (curr->renderer()->isPositioned()) in computeOverAnnotationAdjustment()
[all …]
DRenderBoxModelObject.h66 …virtual bool requiresLayer() const { return isRoot() || isPositioned() || isRelPositioned() || isT… in requiresLayer()
68 …virtual bool requiresLayer() const { return isRoot() || isPositioned() || isRelPositioned() || isT… in requiresLayer()
DRenderBox.cpp251 if (isPositioned()) { in removeFloatingOrPositionedChildFromBlockLists()
278 …if (isFloating() && !isPositioned() && (newStyle->position() == AbsolutePosition || newStyle->posi… in styleWillChange()
309 …if (isPositioned() && style()->hasStaticBlockPosition(isHorizontalWritingMode()) && oldStyle->marg… in styleDidChange()
369 setFloating(!isPositioned() && style()->isFloating()); in updateBoxModelInfoFromStyle()
1329 if (isPositioned()) { in positionLineBox()
1442 if (isWritingModeRoot() && !isPositioned()) in computeRectForRepaint()
1553 if (isPositioned()) { in computeLogicalWidth()
1792 if (isPositioned()) { in computeLogicalHeight()
1926 …while (!cb->isRenderView() && !cb->isBody() && !cb->isTableCell() && !cb->isPositioned() && cb->st… in computePercentageLogicalHeight()
1938 …bool isPositionedWithSpecifiedHeight = cb->isPositioned() && (!cb->style()->logicalHeight().isAuto… in computePercentageLogicalHeight()
[all …]
DRenderBlockLineLayout.cpp136 …(obj->isPositioned() && !obj->style()->isOriginalDisplayInlineType() && !obj->container()->isRende… in appendRunsForObject()
443 if (!r->m_box || r->m_object->isPositioned() || r->m_box->isLineBreak()) in computeInlineDirectionPositionsForLine()
508 … if (!runWithNextObject->m_object->isPositioned() && !runWithNextObject->m_box->isLineBreak()) { in computeInlineDirectionPositionsForLine()
624 if (r->m_object->isPositioned()) in computeBlockDirectionPositionsForLine()
776 bool positioned = isPositioned(); in layoutInlineChildren()
799 if (o->isReplaced() || o->isFloating() || o->isPositioned()) { in layoutInlineChildren()
809 if (o->isPositioned()) in layoutInlineChildren()
880 if (obj->isFloating() || obj->isPositioned()) { in layoutInlineChildren()
1597 } else if (object->isPositioned()) in skipTrailingWhitespace()
1610 else if (object->isPositioned()) in skipLeadingWhitespace()
[all …]
DRenderTable.cpp118 bool wrapInAnonymousSection = !child->isPositioned(); in addChild()
225 if (isPositioned()) in computeLogicalWidth()
402 if (!isPositioned()) in layout()
448 if (isPositioned()) in layout()
DRenderObject.h404 bool isPositioned() const { return m_positioned; } // absolute or fixed positioning in isPositioned() function
431 bool hasClip() const { return isPositioned() && style()->hasClip(); } in hasClip()
661 bool isFloatingOrPositioned() const { return (isFloating() || isPositioned()); } in isFloatingOrPositioned()
DAutoTableLayout.cpp196 if ((tw.isAuto() || tw.isPercent()) && !table->isPositioned()) { in shouldScaleColumns()
199 cb->style()->width().isAuto() && !cb->isPositioned()) in shouldScaleColumns()
DRenderLayer.cpp503 if (prevBlock->isPositioned()) in checkContainingBlockChainForPagination()
695 if (!renderer()->isPositioned() && renderer()->parent()) { in updateLayerPosition()
714 if (renderer()->isPositioned() && enclosingPositionedAncestor()) { in updateLayerPosition()
721 …if (renderer()->isPositioned() && positionedParent->renderer()->isRelPositioned() && positionedPar… in updateLayerPosition()
812 return o->isRenderView() || o->isPositioned() || o->isRelPositioned() || layer->hasTransform(); in isPositionedContainer()
3456 if (renderer()->isPositioned() || renderer()->isRelPositioned()) in scrollTo()
3487 (renderer()->isPositioned() ? parentRects.posClipRect() : in scrollTo()
4056 && !renderer()->isPositioned() in scrollTo()
DRenderObjectChildList.cpp101 if (oldChild->isPositioned() && owner->childrenInline()) in removeChildNode()
DRenderListItem.cpp161 if (currChild->isFloating() || currChild->isPositioned()) in getParentOfFirstLineBox()
DRenderBlock.cpp97 m_canCollapseWithChildren = !block->isRenderView() && !block->isRoot() && !block->isPositioned() in MarginInfo()
230 …if (containsFloats() && !isFloating() && !isPositioned() && (newStyle->position() == AbsolutePosit… in styleWillChange()
1543 if (child->isPositioned()) { in handlePositionedChild()
2058 … if (atBeforeSideOfBlock && oldTop == logicalTopBeforeClear && !isPositioned() && !isTableCell()) { in layoutBlockChild()
2147 if (!o->isPositioned() && (o->isReplaced() || o->isFloating())) { in simplifiedNormalFlowLayout()
2166 if (!box->isPositioned()) in simplifiedNormalFlowLayout()
4710 (!current->isFloating() && !current->isReplaced() && !current->isPositioned()))) in next()
4735 …if (!result->isPositioned() && (result->isText() || result->isFloating() || result->isReplaced() |… in next()
5060 if (child->isPositioned()) { in computeBlockPreferredLogicalWidths()
6128 …if (lineBox == firstRootBox() && totalLogicalHeight < pageLogicalHeight && !isPositioned() && !isT… in adjustLinePositionForPagination()
[all …]
DRenderImage.cpp484 if (RenderObject* cb = isPositioned() ? container() : containingBlock()) { in computeReplacedLogicalWidth()
DRenderBoxModelObject.cpp439 if (!isPositioned()) { in offsetLeft()
449 …Par->isBox() && offsetPar->isBody() && !offsetPar->isRelPositioned() && !offsetPar->isPositioned()) in offsetLeft()
473 if (!isPositioned()) { in offsetTop()
483 …Par->isBox() && offsetPar->isBody() && !offsetPar->isRelPositioned() && !offsetPar->isPositioned()) in offsetTop()
DRenderObject.cpp1706 else if (isPositioned() && (m_style->position() != newStyle->position())) in styleWillChange()
2510 if (isRoot() || isBody() || (isPositioned() && style()->position() == FixedPosition)) in offsetParent()
2525 bool skipTables = isPositioned() || isRelPositioned(); in offsetParent()
2528 …while (curr && (!curr->node() || (!curr->isPositioned() && !curr->isRelPositioned() && !curr->isBo… in offsetParent()
DRenderLayer.h328 …bool isFixed() const { return renderer()->isPositioned() && renderer()->style()->position() == Fix… in isFixed()
DRenderLayerCompositor.cpp641 && currentLayer->renderer()->isPositioned()) {
/external/webkit/Source/WebCore/editing/
DDeleteButtonController.cpp106 if (renderer->isPositioned()) in isDeletableElement()
/external/webkit/Source/WebCore/platform/graphics/android/
DGraphicsLayerAndroid.cpp248 if (view->isPositioned() && view->style()->position() == FixedPosition) { in updatePositionedLayers()
290 } else if (view->isPositioned() && view->style()->position() == AbsolutePosition) { in updatePositionedLayers()