Searched defs:RenderInline (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderInline.h33 class RenderInline : public RenderBoxModelObject { class in namespace:blink
35 explicit RenderInline(Element*);
38 static RenderInline* createAnonymous(Document*);
43 // If you have a RenderInline, use firstChild or lastChild instead.
82 RenderInline* inlineElementContinuation() const;
125 void generateCulledLineBoxRects(GeneratorContext& yield, const RenderInline* container) const;
179 RenderInline* clone() const;
187 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderInline, isRenderInline());
H A DRenderInline.cpp24 #include "core/rendering/RenderInline.h"
56 COMPILE_ASSERT(sizeof(RenderInline) == sizeof(SameSizeAsRenderInline), RenderInline_should_stay_small);
58 RenderInline::RenderInline(Element* element) function in class:blink::RenderInline
64 void RenderInline::trace(Visitor* visitor)
70 RenderInline* RenderInline::createAnonymous(Document* document)
72 RenderInline* renderer = new RenderInline(0);
77 void RenderInline
[all...]

Completed in 537 milliseconds