Home
last modified time | relevance | path

Searched refs:beforeBlock (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderRuby.cpp135 RenderBlock* beforeBlock = rubyBeforeBlock(this); in addChild() local
136 if (!beforeBlock) { in addChild()
137 beforeBlock = createAnonymousRubyInlineBlock(this); in addChild()
138 RenderInline::addChild(beforeBlock, firstChild()); in addChild()
140 beforeBlock->addChild(child); in addChild()
241 RenderBlock* beforeBlock = rubyBeforeBlock(this); in addChild() local
242 if (!beforeBlock) { in addChild()
243 beforeBlock = createAnonymousRubyInlineBlock(this); in addChild()
244 RenderBlock::addChild(beforeBlock, firstChild()); in addChild()
246 beforeBlock->addChild(child); in addChild()
DRenderBlock.cpp2706 RenderBlock* beforeBlock = toRenderBlock(sibling); in blockBeforeWithinSelectionRoot() local
2708 offset += LayoutSize(beforeBlock->logicalLeft(), beforeBlock->logicalTop()); in blockBeforeWithinSelectionRoot()
2710 RenderObject* child = beforeBlock->lastChild(); in blockBeforeWithinSelectionRoot()
2712 beforeBlock = toRenderBlock(child); in blockBeforeWithinSelectionRoot()
2713 offset += LayoutSize(beforeBlock->logicalLeft(), beforeBlock->logicalTop()); in blockBeforeWithinSelectionRoot()
2714 child = beforeBlock->lastChild(); in blockBeforeWithinSelectionRoot()
2716 return beforeBlock; in blockBeforeWithinSelectionRoot()