Home | History | Annotate | Download | only in rendering

Lines Matching refs:RenderRubyRun

41 // RenderRubyRun are 'inline-block/table' like objects,and wrap a single pairing of a ruby base with its ruby text(s).
44 class RenderRubyRun : public RenderBlock {
46 RenderRubyRun(Node*);
47 virtual ~RenderRubyRun();
68 static RenderRubyRun* staticCreateRubyRun(const RenderObject* parentRuby);
75 virtual const char* renderName() const { return "RenderRubyRun (anonymous)"; }
80 inline RenderRubyRun* toRenderRubyRun(RenderObject* object)
83 return static_cast<RenderRubyRun*>(object);
86 inline const RenderRubyRun* toRenderRubyRun(const RenderObject* object)
89 return static_cast<const RenderRubyRun*>(object);
92 void toRenderRubyRun(const RenderRubyRun*);