/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
D | WKBundleNodeHandle.cpp | 54 WKRect WKBundleNodeHandleGetRenderRect(WKBundleNodeHandleRef nodeHandleRef, bool* isReplaced) in WKBundleNodeHandleGetRenderRect() argument 56 return toAPI(toImpl(nodeHandleRef)->renderRect(isReplaced)); in WKBundleNodeHandleGetRenderRect()
|
D | WKBundleNodeHandlePrivate.h | 45 WK_EXPORT WKRect WKBundleNodeHandleGetRenderRect(WKBundleNodeHandleRef nodeHandle, bool* isReplaced…
|
/external/webkit/Source/WebCore/rendering/ |
D | InlineIterator.h | 145 …if (!oldEndOfInline && !current->isFloating() && !current->isReplaced() && !current->isPositioned(… 178 if (next->isText() || next->isFloating() || next->isReplaced() || next->isPositioned() 209 if (o && !o->isText() && !o->isReplaced() && !o->isFloating() && !o->isPositioned())
|
D | RootInlineBox.cpp | 570 if (box->renderer()->isReplaced()) { in ascentAndDescentForBox() 715 if (!renderer->isReplaced() || renderer->isInlineBlockOrInlineTable()) in verticalPositionForBox() 732 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText())) in includeLeadingForBox() 741 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText())) in includeFontForBox() 754 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText())) in includeGlyphsForBox() 767 if (box->renderer()->isReplaced() || (box->renderer()->isText() && !box->isText())) in includeMarginForBox()
|
D | InlineBox.cpp | 158 if (m_renderer->isReplaced()) in adjustPosition() 272 if (!m_renderer || !m_renderer->isReplaced()) in canAccommodateEllipsis()
|
D | LayoutState.cpp | 97 if (renderer->isReplaced() || renderer->scrollsOverflow()) in LayoutState()
|
D | RenderFlexibleBox.cpp | 354 …if (relayoutChildren || (child->isReplaced() && (child->style()->width().isPercent() || child->sty… in layoutHorizontalBox() 637 …if (!haveLineClamp && (relayoutChildren || (child->isReplaced() && (child->style()->width().isPerc… in layoutVerticalBox() 853 …if (relayoutChildren || (child->isReplaced() && (child->style()->width().isPercent() || child->sty… in applyLineClamp()
|
D | RenderBox.cpp | 1288 if (!isInline() || isReplaced()) { in offsetFromContainer() 1352 } else if (isReplaced()) { in positionLineBox() 1788 if (isTableCell() || (isInline() && !isReplaced())) in computeLogicalHeight() 2244 if (isReplaced()) { in computePositionedLogicalWidth() 2585 if (isReplaced()) { in computePositionedLogicalHeight() 3155 if (fontHeight > rect.height() || (!isReplaced() && !isTable())) in localCaretRect() 3268 …return isReplaced() || hasOverflowClip() || isHR() || isLegend() || isWritingModeRoot() || isDepre… in avoidsFloats() 3368 if (isReplaced()) in lineHeight() 3375 if (isReplaced()) { in baselinePosition()
|
D | RenderBlock.cpp | 218 … (cb->style()->position() == StaticPosition || (cb->isInline() && !cb->isReplaced())) && !cb->isRe… in styleWillChange() 219 … if (cb->style()->position() == RelativePosition && cb->isInline() && !cb->isReplaced()) { in styleWillChange() 2147 if (!o->isPositioned() && (o->isReplaced() || o->isFloating())) { in simplifiedNormalFlowLayout() 2452 …if (!child->isFloating() && child->isReplaced() && usePrintRect && child->height() <= renderView->… in paintChildren() 4208 if (closestBox->renderer()->isReplaced()) in positionForPointWithInlineChildren() 4237 if (isReplaced()) { in positionForPoint() 4710 (!current->isFloating() && !current->isReplaced() && !current->isPositioned()))) in next() 4735 …isPositioned() && (result->isText() || result->isFloating() || result->isReplaced() || result->isR… in next() 4811 autoWrap = child->isReplaced() ? child->parent()->style()->autoWrap() : in computeInlinePreferredLogicalWidths() 5178 if (isReplaced() && linePositionMode == PositionOnContainingLine) in lineHeight() [all …]
|
D | RenderLineBoxList.cpp | 341 if (curr->isReplaced()) { in dirtyLinesFromChangedChild()
|
D | RenderBlock.h | 334 virtual bool isBlockFlow() const { return (!isInline() || isReplaced()) && !isTable(); } in isBlockFlow() 335 virtual bool isInlineBlockOrInlineTable() const { return isInline() && isReplaced(); } in isInlineBlockOrInlineTable()
|
D | RenderBlockLineLayout.cpp | 799 if (o->isReplaced() || o->isFloating() || o->isPositioned()) { in layoutInlineChildren() 1856 currWS = o->isReplaced() ? o->parent()->style()->whiteSpace() : o->style()->whiteSpace(); in findNextLineBreak() 1857 … lastWS = last->isReplaced() ? last->parent()->style()->whiteSpace() : last->style()->whiteSpace(); in findNextLineBreak() 1962 } else if (o->isReplaced()) { in findNextLineBreak() 2314 …if (last->isReplaced() && autoWrap && (!last->isImage() || allowImagesToBreak) && (!last->isListMa… in findNextLineBreak()
|
D | InlineFlowBox.cpp | 112 if (child->renderer()->isReplaced()) in addToLine() 150 } else if (child->renderer()->isReplaced()) { in addToLine() 1316 if (curr->renderer()->isReplaced() && curr->renderer()->isRubyRun()) { in computeOverAnnotationAdjustment()
|
D | RenderBox.h | 426 …virtual bool shouldComputeSizeAsReplaced() const { return isReplaced() && !isInlineBlockOrInlineTa… in shouldComputeSizeAsReplaced()
|
D | RenderObject.cpp | 629 …while (o && (o->style()->position() == StaticPosition || (o->isInline() && !o->isReplaced())) && !… in containingBlock() 635 if (o->style()->position() == RelativePosition && o->isInline() && !o->isReplaced()) in containingBlock() 645 while (o && ((o->isInline() && !o->isReplaced()) || o->isTableRow() || o->isTableSection() in containingBlock() 2456 if (isReplaced()) in caretMaxOffset()
|
D | RenderTableSection.cpp | 623 …) && o->style()->logicalHeight().isPercent() && (flexAllChildren || o->isReplaced() || (o->isBox()… in setCellLogicalWidths() 636 if (!box->isReplaced() && !box->scrollsOverflow() && !flexAllChildren) in setCellLogicalWidths()
|
D | RenderObject.h | 411 bool isReplaced() const { return m_replaced; } // a "replaced" element (see CSS) in isReplaced() function
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/ |
D | InjectedBundleNodeHandle.cpp | 115 IntRect InjectedBundleNodeHandle::renderRect(bool* isReplaced) const in renderRect() 117 return m_node.get()->renderRect(isReplaced); in renderRect()
|
/external/webkit/Source/WebKit/mac/DOM/ |
D | WebDOMOperationsPrivate.h | 49 - (NSRect)_renderRect:(bool *)isReplaced;
|
D | WebDOMOperations.mm | 102 - (NSRect)_renderRect:(bool *)isReplaced 104 return NSRect(core(self)->renderRect(isReplaced));
|
/external/webkit/Source/WebCore/dom/ |
D | ContainerNode.cpp | 827 if (!o->isInline() || o->isReplaced()) { in getUpperLeftCorner() 852 if (!o->isInline() || o->isReplaced()) { in getUpperLeftCorner() 859 } else if ((o->isText() && !o->isBR()) || o->isReplaced()) { in getUpperLeftCorner() 889 if (!o->isInline() || o->isReplaced()) { in getLowerRightCorner() 913 if (o->isText() || o->isReplaced()) { in getLowerRightCorner()
|
D | Node.cpp | 820 IntRect Node::renderRect(bool* isReplaced) in renderRect() argument 826 …f (renderer->isRenderBlock() || renderer->isInlineBlockOrInlineTable() || renderer->isReplaced()) { in renderRect() 827 *isReplaced = renderer->isReplaced(); in renderRect()
|
D | Node.h | 343 IntRect renderRect(bool* isReplaced);
|
/external/webkit/Source/WebCore/editing/ |
D | VisiblePosition.cpp | 124 … if ((renderer->isReplaced() || renderer->isBR()) && offset == box->caretRightmostOffset()) in leftVisuallyDistinctCandidate() 275 … if ((renderer->isReplaced() || renderer->isBR()) && offset == box->caretLeftmostOffset()) in rightVisuallyDistinctCandidate()
|
/external/webkit/Source/WebCore/accessibility/ |
D | AccessibilityObject.cpp | 392 …if (!replacedNode || !replacedNode->renderer() || !replacedNode->renderer()->isReplaced() || repla… in replacedNodeNeedsCharacter()
|