Home | History | Annotate | Download | only in rendering

Lines Matching refs:RenderBlock

73 static inline RenderBlock* rubyBeforeBlock(const RenderObject* ruby)
76 return isRubyBeforeBlock(child) ? static_cast<RenderBlock*>(child) : 0;
79 static inline RenderBlock* rubyAfterBlock(const RenderObject* ruby)
82 return isRubyAfterBlock(child) ? static_cast<RenderBlock*>(child) : 0;
85 static RenderBlock* createAnonymousRubyInlineBlock(RenderObject* ruby)
90 RenderBlock* newBlock = new (ruby->renderArena()) RenderBlock(ruby->document() /* anonymous box */);
131 RenderBlock* beforeBlock = rubyBeforeBlock(this);
146 RenderBlock* afterBlock = rubyAfterBlock(this);
215 : RenderBlock(node)
229 RenderBlock::addChild(child, firstChild());
232 RenderBlock* beforeBlock = rubyBeforeBlock(this);
235 RenderBlock::addChild(beforeBlock, firstChild());
244 RenderBlock::addChild(child);
247 RenderBlock* afterBlock = rubyAfterBlock(this);
250 RenderBlock::addChild(afterBlock);
259 RenderBlock::addChild(child, beforeChild);
283 RenderBlock::addChild(lastRun);
294 RenderBlock::removeChild(child);