HomeSort by relevance Sort by last modified time
    Searched refs:RenderRubyRun (Results 1 - 9 of 9) 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...]
RenderRubyBase.h 38 class RenderRubyRun;
62 RenderRubyRun* rubyRun() const;
64 // Allow RenderRubyRun to manipulate the children within ruby bases.
65 friend class RenderRubyRun;
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...]
RenderRuby.cpp 35 #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* run = findRubyRunParent(child)
    [all...]
RenderRubyBase.cpp 34 #include "RenderRubyRun.h"
189 RenderRubyRun* RenderRubyBase::rubyRun() const
194 return static_cast<RenderRubyRun*>(parent());
InlineFlowBox.cpp 36 #include "RenderRubyRun.h"
649 RenderRubyRun* rubyRun = static_cast<RenderRubyRun*>(curr->renderer());
    [all...]
RenderBlockLineLayout.cpp 35 #include "RenderRubyRun.h"
    [all...]
InlineTextBox.cpp 40 #include "RenderRubyRun.h"
454 RenderRubyText* rubyText = static_cast<RenderRubyRun*>(containingBlock->parent())->rubyText();
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 894 rendering/RenderRubyRun.cpp \
    [all...]

Completed in 172 milliseconds