HomeSort by relevance Sort by last modified time
    Searched defs:RenderRubyRun (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderRubyRun.h 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)
    [all...]
RenderRubyRun.cpp 33 #include "RenderRubyRun.h"
43 RenderRubyRun::RenderRubyRun(Node* node)
50 RenderRubyRun::~RenderRubyRun()
54 bool RenderRubyRun::hasRubyText() const
61 bool RenderRubyRun::hasRubyBase() const
68 bool RenderRubyRun::isEmpty() const
73 RenderRubyText* RenderRubyRun::rubyText() const
79 RenderRubyBase* RenderRubyRun::rubyBase() cons
    [all...]

Completed in 188 milliseconds