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

  /external/webkit/WebCore/rendering/
RenderInline.h 33 class RenderInline : public RenderBoxModelObject {
35 RenderInline(Node*);
129 RenderInline* inlineContinuation() const;
145 static RenderInline* cloneInline(RenderInline* src);
159 inline RenderInline* toRenderInline(RenderObject* object)
162 return static_cast<RenderInline*>(object);
165 inline const RenderInline* toRenderInline(const RenderObject* object)
168 return static_cast<const RenderInline*>(object);
172 void toRenderInline(const RenderInline*);
    [all...]
RenderInline.cpp 24 #include "RenderInline.h"
45 RenderInline::RenderInline(Node* node)
54 void RenderInline::destroy()
95 RenderInline* RenderInline::inlineContinuation() const
102 void RenderInline::updateBoxModelInfoFromStyle()
113 void RenderInline::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
123 for (RenderInline* currCont = inlineContinuation(); currCont; currCont = currCont->inlineContinuation()) {
139 void RenderInline::addChild(RenderObject* newChild, RenderObject* beforeChild
    [all...]

Completed in 13 milliseconds