/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | StyleAdjuster.cpp | 59 static EDisplay equivalentBlockDisplay(EDisplay display, bool isFloating, bool strictParsing) in equivalentBlockDisplay() argument 71 if (!strictParsing && isFloating) in equivalentBlockDisplay() 109 || style->isFloating() || style->hasOutOfFlowPosition(); in doesNotInheritTextDecoration() 168 …if (style->hasOutOfFlowPosition() || style->isFloating() || (e && e->document().documentElement() … in adjustRenderStyle() 169 …style->setDisplay(equivalentBlockDisplay(style->display(), style->isFloating(), !m_useQuirksModeSt… in adjustRenderStyle() 423 if (style->display() == BLOCK && !style->isFloating()) in adjustStyleForDisplay() 454 …style->setDisplay(equivalentBlockDisplay(style->display(), style->isFloating(), !m_useQuirksModeSt… in adjustStyleForDisplay()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderLayerModelObject.cpp | 92 s_wasFloating = isFloating(); in styleWillChange() 117 if (s_wasFloating && isFloating()) in styleDidChange() 129 if (s_wasFloating && isFloating()) in styleDidChange()
|
D | RenderBlockLineLayout.cpp | 1103 …if (!oldEndOfInline && (current == parent || (!current->isFloating() && !current->isReplaced() && … in next() 1130 …if (!result->isOutOfFlowPositioned() && (result->isText() || result->isFloating() || result->isRep… in next() 1315 if (child->isFloating()) { in computeInlinePreferredLogicalWidths() 1337 if (!addedTextIndent && !child->isFloating()) { in computeInlinePreferredLogicalWidths() 1352 if (child->isFloating()) in computeInlinePreferredLogicalWidths() 1371 if (!child->isFloating()) { in computeInlinePreferredLogicalWidths() 1549 if (o->isReplaced() || o->isFloating() || o->isOutOfFlowPositioned()) { in layoutInlineChildren() 1556 else if (o->isFloating()) in layoutInlineChildren()
|
D | RenderMarquee.cpp | 206 if (isFloating()) in renderName()
|
D | RenderObject.h | 535 bool isFloating() const { return m_bitfields.floating(); } in isFloating() function 685 void setFloating(bool isFloating) { m_bitfields.setFloating(isFloating); } in setFloating() argument 895 … bool isFloatingOrOutOfFlowPositioned() const { return (isFloating() || isOutOfFlowPositioned()); } in isFloatingOrOutOfFlowPositioned()
|
D | RenderBlock.cpp | 1210 …style()->styleType() != NOPSEUDO && anonymousBlock->previousSibling()->isFloating() && !anonymousB… in removeChild() 1211 …()->style()->styleType() != NOPSEUDO && anonymousBlock->nextSibling()->isFloating() && !anonymousB… in removeChild() 1545 if (!o->isOutOfFlowPositioned() && (o->isReplaced() || o->isFloating())) { in simplifiedNormalFlowLayout() 1826 || isPositioned() || isFloating() in isSelectionRoot() 2572 …if (!child->hasSelfPaintingLayer() && !child->isFloating() && child->nodeAtPoint(request, result, … in hitTestContents() 3257 if (child->isFloating() || (child->isBox() && toRenderBox(child)->avoidsFloats())) { in computeBlockPreferredLogicalWidths() 3303 if (!child->isFloating()) { in computeBlockPreferredLogicalWidths() 3321 if (child->isFloating()) { in computeBlockPreferredLogicalWidths() 3521 if (firstLineBlock->isReplaced() || firstLineBlock->isFloating() in firstLineBlock() 3541 pseudoStyle->setDisplay(pseudoStyle->isFloating() ? BLOCK : INLINE); in styleForFirstLetter() [all …]
|
D | TextAutosizer.cpp | 157 return (renderer->isFloating() || renderer->isOutOfFlowPositioned()); in isPotentialClusterRoot() 168 || renderer->isFloating() in isIndependentDescendant() 231 if (block->isFloating()) in blockHeightConstrained()
|
D | RenderListItem.cpp | 241 if (currChild->isFloating() || currChild->isOutOfFlowPositioned()) in getParentOfFirstLineBox()
|
D | RenderBox.cpp | 121 if (isFloating()) { in removeFloatingOrPositionedChildFromBlockLists() 163 if (isFloating() && !isOutOfFlowPositioned() && newStyle.hasOutOfFlowPosition()) in styleWillChange() 275 setFloating(!isOutOfFlowPositioned() && styleToUse->isFloating()); in updateFromStyle() 1268 …if (!frameView()->isInPerformLayout() && isFloating() && shapeOutsideValue && shapeOutsideValue->i… in imageChanged() 1964 …&& !isFloating() && !isInline() && !cb->isFlexibleBoxIncludingDeprecated() && !cb->isRenderGrid())… in computeLogicalWidth() 2075 if (isFloating() || (isInlineBlockOrInlineTable() && !isMarquee())) in sizesLogicalWidthToFitContent() 2131 if (flowDirection == BlockDirection || isFloating() || isInline()) { in computeMarginsForDirection() 3833 if ((isInline() && !isMarquee()) || !avoidsFloats() || isFloating()) in shrinkToAvoidFloats()
|
D | RenderBlockFlow.cpp | 940 if (prev->isFloating()) in rebuildFloatsFromIntruding() 1061 if (child->isFloating()) { in layoutBlockChildren() 1943 …&& containsFloats() && !isFloating() && !isOutOfFlowPositioned() && newStyle.hasOutOfFlowPosition(… in styleWillChange() 2281 ASSERT(floatBox->isFloating()); in insertFloatingObject()
|
D | InlineIterator.h | 179 …return object->isText() || object->isFloating() || object->isOutOfFlowPositioned() || object->isRe… in isIteratorTarget()
|
D | RenderBlockFlow.h | 166 …return obj->isFloating() || (obj->isOutOfFlowPositioned() && !obj->style()->isOriginalDisplayInlin… in shouldSkipCreatingRunsForObject()
|
D | RenderObject.cpp | 1785 if (isFloating() && (m_style->floating() != newStyle.floating())) in styleWillChange() 1795 && (!newStyle.isFloating() && !newStyle.hasOutOfFlowPosition()) in styleWillChange() 2415 if (!isFloating() && parent()->childrenInline()) in insertedIntoTree()
|
D | RenderBox.h | 617 if (isFloating()) in markShapeOutsideDependentsForLayout()
|
D | RenderDeprecatedFlexibleBox.cpp | 1055 if (isFloating()) in renderName()
|
D | RenderGrid.cpp | 1388 if (isFloating()) in renderName()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
D | LineBreaker.cpp | 41 } else if (object->isFloating()) { in skipLeadingWhitespace() 85 } else if (context.currentObject()->isFloating()) { in nextLineBreak()
|
D | BreakingContextInlineHeaders.h | 235 else if (object->isFloating()) in skipTrailingWhitespace()
|
/external/chromium_org/third_party/WebKit/Source/core/paint/ |
D | GridPainter.cpp | 85 if (!child.hasSelfPaintingLayer() && !child.isFloating()) in paintChild()
|
D | BlockPainter.cpp | 86 if (!child->hasSelfPaintingLayer() && !child->isFloating()) in paintChild() 99 if (!child->hasSelfPaintingLayer() && !child->isFloating()) in paintChildAsInlineBlock()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/ |
D | TestWindow.java | 50 @Override public boolean isFloating() { in isFloating() method in TestWindow
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | ShapeOutsideInfo.cpp | 265 if (!box.isFloating() || !shapeValue) in isEnabledFor()
|
/external/clang/utils/TableGen/ |
D | NeonEmitter.cpp | 166 bool isFloating() const { return Float; } in isFloating() function in __anon7fb122680111::Type 983 !RetT.isFloating()) in getBuiltinTypeStr()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | htmlediting.cpp | 446 if (renderer->style()->isFloating()) in isSpecialHTMLElement()
|
D | ReplaceSelectionCommand.cpp | 574 if (element->renderer() && element->renderer()->style()->isFloating()) in removeRedundantStylesAndKeepStyleSpanInline()
|