/external/webkit/Source/WebCore/rendering/ |
D | RenderRuby.cpp | 73 static inline RenderBlock* rubyBeforeBlock(const RenderObject* ruby) in rubyBeforeBlock() 76 return isRubyBeforeBlock(child) ? static_cast<RenderBlock*>(child) : 0; in rubyBeforeBlock() 79 static inline RenderBlock* rubyAfterBlock(const RenderObject* ruby) in rubyAfterBlock() 82 return isRubyAfterBlock(child) ? static_cast<RenderBlock*>(child) : 0; in rubyAfterBlock() 85 static RenderBlock* createAnonymousRubyInlineBlock(RenderObject* ruby) in createAnonymousRubyInlineBlock() 90 …RenderBlock* newBlock = new (ruby->renderArena()) RenderBlock(ruby->document() /* anonymous box */… in createAnonymousRubyInlineBlock() 131 RenderBlock* beforeBlock = rubyBeforeBlock(this); in addChild() 146 RenderBlock* afterBlock = rubyAfterBlock(this); in addChild() 215 : RenderBlock(node) in RenderRubyAsBlock() 229 RenderBlock::addChild(child, firstChild()); in addChild() [all …]
|
D | RenderBlock.cpp | 72 typedef WTF::HashMap<const RenderBlock*, HashSet<RenderBox*>*> PercentHeightDescendantsMap; 75 typedef WTF::HashMap<const RenderBox*, HashSet<RenderBlock*>*> PercentHeightContainerMap; 78 typedef WTF::HashMap<RenderBlock*, ListHashSet<RenderInline*>*> ContinuationOutlineTableMap; 80 typedef WTF::HashSet<RenderBlock*> DelayedUpdateScrollInfoSet; 84 bool RenderBlock::s_canPropagateFloatIntoSibling = false; 87 RenderBlock::MarginInfo::MarginInfo(RenderBlock* block, int beforeBorderPadding, int afterBorderPad… in MarginInfo() 119 RenderBlock::RenderBlock(Node* node) in RenderBlock() function in WebCore::RenderBlock 130 RenderBlock::~RenderBlock() in ~RenderBlock() 142 HashSet<RenderBlock*>* containerSet = gPercentHeightContainerMap->get(*descendant); in ~RenderBlock() 158 void RenderBlock::destroy() in destroy() [all …]
|
D | RenderBlock.h | 54 class RenderBlock : public RenderBox { 56 RenderBlock(Node*); 57 virtual ~RenderBlock(); 84 void removePositionedObjects(RenderBlock*); 124 …IntRect logicalLeftSelectionGap(RenderBlock* rootBlock, const IntPoint& rootBlockPhysicalPosition,… 126 …IntRect logicalRightSelectionGap(RenderBlock* rootBlock, const IntPoint& rootBlockPhysicalPosition… 146 RenderBlock* blockElementContinuation() const; 153 RenderBlock* createAnonymousBlock(bool isFlexibleBox = false) const; 154 RenderBlock* createAnonymousColumnsBlock() const; 155 RenderBlock* createAnonymousColumnSpanBlock() const; [all …]
|
D | RenderDetails.cpp | 33 : RenderBlock(node) in RenderDetails() 40 RenderBlock* RenderDetails::summaryBlock() in summaryBlock() 44 RenderBlock::addChild(m_summaryBlock, m_contentBlock); in summaryBlock() 49 RenderBlock* RenderDetails::contentBlock() in contentBlock() 53 RenderBlock::addChild(m_contentBlock); in contentBlock() 68 RenderBlock::removeChild(oldChild); in removeChild() 74 RenderBlock::removeChild(oldChild); in removeChild() 94 RenderBlock::styleDidChange(diff, oldStyle); in styleDidChange() 154 RenderBlock::layout(); in layout()
|
D | RenderDetails.h | 30 class RenderDetails : public RenderBlock { 45 virtual void removeLeftoverAnonymousBlock(RenderBlock*) { } in removeLeftoverAnonymousBlock() argument 57 RenderBlock* summaryBlock(); 58 RenderBlock* contentBlock(); 60 RenderBlock* m_summaryBlock; 61 RenderBlock* m_contentBlock;
|
D | RenderRubyRun.cpp | 44 : RenderBlock(node) in RenderRubyRun() 90 RenderBlock::addChild(base); in rubyBaseSafe() 95 RenderBlock* RenderRubyRun::firstLineBlock() const in firstLineBlock() 118 RenderBlock::addChild(child, firstChild()); in addChild() 126 RenderBlock* newRun = staticCreateRubyRun(ruby); in addChild() 132 RenderBlock::addChild(child, beforeChild); in addChild() 133 RenderBlock::removeChild(beforeChild); in addChild() 174 RenderBlock::removeChild(child); in removeChild() 178 RenderBlock* base = rubyBase(); in removeChild() 180 RenderBlock::removeChild(base); in removeChild() [all …]
|
D | RenderRubyBase.cpp | 42 : RenderBlock(node) in RenderRubyBase() 92 RenderBlock* toBlock; in moveInlineChildren() 121 RenderBlock* anonBlock = toRenderBlock(child); in moveBlockChildren() 148 RenderBlock* anonBlock = toRenderBlock(child); in moveBlockChildren() 179 RenderBlock* anonBlockHere = toRenderBlock(firstChildHere); in mergeBlockChildren() 180 RenderBlock* anonBlockThere = toRenderBlock(lastChildThere); in mergeBlockChildren()
|
D | RenderSummary.cpp | 29 : RenderBlock(node) in RenderSummary() 39 RenderBlock::destroy(); in destroy() 53 RenderBlock::styleDidChange(diff, oldStyle); in styleDidChange()
|
D | RenderTableCell.cpp | 50 : RenderBlock(node) in RenderTableCell() 66 RenderBlock::destroy(); in destroy() 137 RenderBlock::computePreferredLogicalWidths(); in computePreferredLogicalWidths() 177 int result = RenderBlock::paddingTop(); in paddingTop() 185 int result = RenderBlock::paddingBottom(); in paddingBottom() 193 int result = RenderBlock::paddingLeft(); in paddingLeft() 202 int result = RenderBlock::paddingRight(); in paddingRight() 210 int result = RenderBlock::paddingBefore(); in paddingBefore() 218 int result = RenderBlock::paddingAfter(); in paddingAfter() 227 RenderBlock::setOverrideSize(size); in setOverrideSize() [all …]
|
D | RenderRubyText.cpp | 41 : RenderBlock(node) in RenderRubyText() 58 return RenderBlock::textAlignmentForLine(endsWithSoftBreak); in textAlignmentForLine() 68 …return RenderBlock::adjustInlineDirectionLineBounds(expansionOpportunityCount, logicalLeft, logica… in adjustInlineDirectionLineBounds()
|
D | RenderRuby.h | 66 virtual void removeLeftoverAnonymousBlock(RenderBlock*) { ASSERT_NOT_REACHED(); } in removeLeftoverAnonymousBlock() argument 70 class RenderRubyAsBlock : public RenderBlock { 82 virtual void removeLeftoverAnonymousBlock(RenderBlock*) { ASSERT_NOT_REACHED(); } in removeLeftoverAnonymousBlock() argument
|
D | RenderRubyRun.h | 44 class RenderRubyRun : public RenderBlock { 63 virtual RenderBlock* firstLineBlock() const; 77 virtual void removeLeftoverAnonymousBlock(RenderBlock*) { } in removeLeftoverAnonymousBlock() argument
|
D | RenderListItem.cpp | 41 : RenderBlock(node) in RenderListItem() 52 RenderBlock::styleDidChange(diff, oldStyle); in styleDidChange() 75 RenderBlock::destroy(); in destroy() 147 static RenderObject* getParentOfFirstLineBox(RenderBlock* curr, RenderObject* marker) in getParentOfFirstLineBox() 235 RenderBlock::computePreferredLogicalWidths(); in computePreferredLogicalWidths() 243 RenderBlock::layout(); in layout() 248 RenderBlock::addOverflowFromChildren(); in addOverflowFromChildren() 353 RenderBlock::paint(paintInfo, tx, ty); in paint()
|
D | RenderScrollbarPart.cpp | 39 : RenderBlock(node) in RenderScrollbarPart() 131 RenderBlock::styleWillChange(diff, newStyle); in styleWillChange() 137 RenderBlock::styleDidChange(diff, oldStyle); in styleDidChange() 158 RenderBlock::imageChanged(image, rect); in imageChanged()
|
D | RenderFieldset.cpp | 44 : RenderBlock(element) in RenderFieldset() 50 RenderBlock::computePreferredLogicalWidths(); in computePreferredLogicalWidths() 140 return RenderBlock::paintBoxDecorations(paintInfo, tx, ty); in paintBoxDecorations() 194 return RenderBlock::paintMask(paintInfo, tx, ty); in paintMask()
|
D | RenderInline.h | 111 void splitInlines(RenderBlock* fromBlock, RenderBlock* toBlock, RenderBlock* middleBlock, 113 void splitFlow(RenderObject* beforeChild, RenderBlock* newBlockBox,
|
/external/webkit/Source/WebCore/rendering/svg/ |
D | RenderSVGBlock.cpp | 33 : RenderBlock(node) in RenderSVGBlock() 49 RenderBlock::setStyle(useStyle.release()); in setStyle() 54 RenderBlock::updateBoxModelInfoFromStyle(); in updateBoxModelInfoFromStyle() 80 RenderBlock::destroy(); in destroy() 87 RenderBlock::styleWillChange(diff, newStyle); in styleWillChange() 92 RenderBlock::styleDidChange(diff, oldStyle); in styleDidChange() 98 RenderBlock::updateFromElement(); in updateFromElement()
|
/external/webkit/LayoutTests/platform/android/fast/text/ |
D | hyphens-expected.txt | 4 RenderBlock {HTML} at (0,0) size 313x483 6 RenderBlock (floating) {DIV} at (4,0) size 344x296 7 RenderBlock {P} at (0,16) size 344x19 13 RenderBlock {DIV} at (0,51) size 344x245 [border: (3px solid #000000)] 14 RenderBlock (floating) {DIV} at (262,7) size 75x90 [bgcolor=#F0F8FF] 32 RenderBlock (floating) {DIV} at (4,296) size 344x317 33 RenderBlock {P} at (0,16) size 344x19 39 RenderBlock {DIV} at (0,51) size 344x266 [border: (3px solid #000000)] 40 RenderBlock (floating) {DIV} at (262,7) size 75x90 [bgcolor=#F0F8FF] 60 RenderBlock (floating) {DIV} at (4,613) size 344x296 [all …]
|
D | hyphenate-character-expected.txt | 4 RenderBlock {HTML} at (0,0) size 313x483 6 RenderBlock (floating) {DIV} at (4,0) size 344x296 7 RenderBlock {P} at (0,16) size 344x19 15 RenderBlock {DIV} at (0,51) size 344x245 [border: (3px solid #000000)] 16 RenderBlock (floating) {DIV} at (262,7) size 75x90 [bgcolor=#F0F8FF] 34 RenderBlock (floating) {DIV} at (4,296) size 344x296 35 RenderBlock {P} at (0,16) size 344x19 43 RenderBlock {DIV} at (0,51) size 344x245 [border: (3px solid #000000)] 44 RenderBlock (floating) {DIV} at (262,7) size 75x90 [bgcolor=#F0F8FF] 62 RenderBlock (floating) {DIV} at (4,592) size 344x296 [all …]
|
/external/webkit/Source/WebCore/rendering/mathml/ |
D | RenderMathMLFenced.cpp | 95 RenderBlock::addChild(openFence, firstChild()); in makeFences() 98 RenderBlock::addChild(closeFence); in makeFences() 125 RenderBlock::addChild(separatorObj, lastChild()); in addChild() 133 RenderBlock* block = new (renderArena()) RenderBlock(node()); in addChild() 139 RenderBlock::addChild(block, lastChild()); in addChild() 142 RenderBlock::addChild(child, lastChild()); in addChild()
|
D | RenderMathMLUnderOver.cpp | 76 RenderBlock::addChild(row, beforeChild); in addChild() 84 RenderBlock::addChild(row, firstChild()); in addChild() 87 RenderBlock::addChild(row, beforeChild); in addChild() 96 RenderBlock::addChild(row, firstChild()); in addChild() 99 RenderBlock::addChild(row, beforeChild); in addChild() 106 RenderBlock::addChild(row, beforeChild); in addChild() 147 RenderBlock::layout(); in layout() 243 RenderBlock::layout(); in layout() 250 … return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode); in baselinePosition()
|
D | RenderMathMLRoot.cpp | 76 RenderBlock* block = new (renderArena()) RenderBlock(node()); in addChild() 80 RenderBlock::addChild(block); in addChild() 84 block = new (renderArena()) RenderBlock(node()); in addChild() 89 RenderBlock::addChild(block); in addChild() 203 RenderBlock::layout(); in layout() 249 RenderBlock::layout(); in layout()
|
D | RenderMathMLOperator.cpp | 78 RenderBlock::layout(); in layout() 180 RenderBlock* container = new (renderArena()) RenderMathMLBlock(node()); in updateFromElement() 311 RenderBlock* RenderMathMLOperator::createGlyph(UChar glyph, int size, int charRelative, int topRela… in createGlyph() 313 RenderBlock* container = new (renderArena()) RenderMathMLBlock(node()); in createGlyph() 316 RenderBlock* parent = container; in createGlyph() 318 RenderBlock* charBlock = new (renderArena()) RenderBlock(node()); in createGlyph() 339 …return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, lineDirection, linePositionMod… in baselinePosition()
|
D | RenderMathMLRow.cpp | 67 RenderBlock::layout(); in layout() 116 RenderBlock::layout(); in layout() 130 … return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode); in baselinePosition()
|
D | RenderMathMLFraction.cpp | 103 RenderBlock* row = new (renderArena()) RenderMathMLBlock(node()); in addChild() 117 RenderBlock::addChild(row, beforeChild); in addChild() 130 RenderBlock::layout(); in layout() 182 …return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, lineDirection, linePositionMod… in baselinePosition()
|