Searched defs:isOutOfFlowPositioned (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObject.h371 bool isInFlowRenderFlowThread() const { return isRenderFlowThread() && !isOutOfFlowPositioned(); }
372 bool isOutOfFlowRenderFlowThread() const { return isRenderFlowThread() && isOutOfFlowPositioned(); }
514 bool isOutOfFlowPositioned() const { return m_bitfields.isOutOfFlowPositioned(); } // absolute or fixed positioning function in class:WebCore::RenderObject
571 bool hasClip() const { return isOutOfFlowPositioned() && style()->hasClip(); }
873 bool isFloatingOrOutOfFlowPositioned() const { return (isFloating() || isOutOfFlowPositioned()); }
1176 bool isOutOfFlowPositioned() const { return m_positionedState == IsOutOfFlowPositioned; } function in class:WebCore::RenderObject::RenderObjectBitfields
H A DRenderBox.cpp195 if (isOutOfFlowPositioned())
223 if (isFloating() && !isOutOfFlowPositioned() && newStyle->hasOutOfFlowPosition())
248 if (isOutOfFlowPositioned() && newStyle->hasStaticBlockPosition(isHorizontalWritingMode()) && oldStyle->marginBefore() != newStyle->marginBefore()
354 setFloating(!isOutOfFlowPositioned() && styleToUse->isFloating());
1885 if (isOutOfFlowPositioned()) {
1997 if (isWritingModeRoot() && !isOutOfFlowPositioned())
2119 if (isOutOfFlowPositioned()) {
2447 LayoutUnit logicalLeftDelta = isOutOfFlowPositioned() ? logicalLeftInRegion - logicalLeft() : startMarginDelta;
2450 LayoutUnit logicalRightDelta = isOutOfFlowPositioned() ? logicalRightInRegion - oldLogicalRight : startMarginDelta;
2454 if (!isOutOfFlowPositioned()
4366 percentageLogicalHeightIsResolvableFromBlock(const RenderBlock* containingBlock, bool isOutOfFlowPositioned) argument
[all...]
H A DRenderLayer.cpp484 if (layer->renderer()->isOutOfFlowPositioned()) {
884 if (prevBlock->isOutOfFlowPositioned())
1030 ASSERT(renderer()->isOutOfFlowPositioned());
1041 return (subtreeRoot->renderer() && subtreeRoot->renderer()->isOutOfFlowPositioned()) || subtreeRoot->hasOutOfFlowPositionedDescendant();
1164 if (!renderer()->isOutOfFlowPositioned() && renderer()->parent()) {
1183 if (renderer()->isOutOfFlowPositioned() && enclosingPositionedAncestor()) {
1192 if (renderer()->isOutOfFlowPositioned() && positionedParent->renderer()->isInFlowPositioned() && positionedParent->renderer()->isRenderInline()) {
1833 if (fixedFlowThreadContainer && !fixedFlowThreadContainer->isOutOfFlowPositioned())
5936 bool isOutOfFlowPositioned = renderer()->isOutOfFlowPositioned(); local
[all...]

Completed in 164 milliseconds