Searched refs:RenderRubyRun (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderRubyRun.h41 // 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 { class in namespace:WebCore
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*>(objec
[all...]
H A DRenderRubyRun.cpp33 #include "RenderRubyRun.h"
43 RenderRubyRun::RenderRubyRun(Node* node) function in class:WebCore::RenderRubyRun
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
[all...]
H A DRenderRubyBase.h38 class RenderRubyRun;
62 RenderRubyRun* rubyRun() const;
64 // Allow RenderRubyRun to manipulate the children within ruby bases.
65 friend class RenderRubyRun;
H A DRenderRuby.cpp35 #include "RenderRubyRun.h"
95 static RenderRubyRun* lastRubyRun(const RenderObject* ruby)
101 return child && child->isRubyRun() ? static_cast<RenderRubyRun*>(child) : 0;
104 static inline RenderRubyRun* findRubyRunParent(RenderObject* child)
108 return static_cast<RenderRubyRun*>(child);
130 // Insert :before and :after content before/after the RenderRubyRun(s)
184 // (The RenderRubyRun object will handle the details)
185 RenderRubyRun* lastRun = lastRubyRun(this);
187 lastRun = RenderRubyRun::staticCreateRubyRun(this);
212 RenderRubyRun* ru
[all...]
H A DRenderRubyBase.cpp34 #include "RenderRubyRun.h"
189 RenderRubyRun* RenderRubyBase::rubyRun() const
194 return static_cast<RenderRubyRun*>(parent());
H A DInlineFlowBox.cpp36 #include "RenderRubyRun.h"
649 RenderRubyRun* rubyRun = static_cast<RenderRubyRun*>(curr->renderer());
1317 RenderRubyRun* rubyRun = static_cast<RenderRubyRun*>(curr->renderer());
H A DRenderBlockLineLayout.cpp35 #include "RenderRubyRun.h"
1718 void applyOverhang(RenderRubyRun*, RenderObject* startRenderer, RenderObject* endRenderer);
1761 void LineWidth::applyOverhang(RenderRubyRun* rubyRun, RenderObject* startRenderer, RenderObject* endRenderer)
H A DInlineTextBox.cpp40 #include "RenderRubyRun.h"
454 RenderRubyText* rubyText = static_cast<RenderRubyRun*>(containingBlock->parent())->rubyText();
/external/webkit/Source/WebCore/
H A DAndroid.mk894 rendering/RenderRubyRun.cpp \

Completed in 108 milliseconds