Searched refs:RenderInline (Results 1 - 22 of 22) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DRenderSVGInline.cpp36 : RenderInline(element)
106 RenderInline::willBeDestroyed();
113 RenderInline::styleWillChange(diff, newStyle);
118 RenderInline::styleDidChange(diff, oldStyle);
124 RenderInline::addChild(child, beforeChild);
137 RenderInline::removeChild(child);
142 RenderInline::removeChild(child);
H A DRenderSVGInline.h25 #include "RenderInline.h"
31 class RenderSVGInline : public RenderInline {
H A DSVGTextQuery.cpp27 #include "RenderInline.h"
71 RenderInline* renderInline = toRenderInline(renderer);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderInline.cpp24 #include "RenderInline.h"
52 RenderInline::RenderInline(Element* element) function in class:WebCore::RenderInline
59 RenderInline* RenderInline::createAnonymous(Document* document)
61 RenderInline* renderer = new (document->renderArena()) RenderInline(0);
66 void RenderInline::willBeDestroyed()
121 RenderInline* RenderInline
[all...]
H A DRenderInline.h34 class RenderInline : public RenderBoxModelObject { class in namespace:WebCore
36 explicit RenderInline(Element*);
38 static RenderInline* createAnonymous(Document*);
78 RenderInline* inlineElementContinuation() const;
120 void generateCulledLineBoxRects(GeneratorContext& yield, const RenderInline* container) const;
179 RenderInline* clone() const;
191 inline RenderInline* toRenderInline(RenderObject* object)
194 return static_cast<RenderInline*>(object);
197 inline const RenderInline* toRenderInline(const RenderObject* object)
200 return static_cast<const RenderInline*>(objec
[all...]
H A DPaintInfo.h44 class RenderInline;
57 RenderObject* newSubtreePaintRoot = 0, RenderRegion* region = 0, ListHashSet<RenderInline*>* newOutlineObjects = 0,
117 ListHashSet<RenderInline*>* outlineObjects; // used to list outlines that should be painted by a block with inline children
H A DRenderRuby.cpp113 : RenderInline(element)
123 RenderInline::styleDidChange(diff, oldStyle);
133 RenderInline::addChild(child, firstChild());
139 RenderInline::addChild(beforeBlock, firstChild());
148 RenderInline::addChild(child);
154 RenderInline::addChild(afterBlock);
163 RenderInline::addChild(child, beforeChild);
187 RenderInline::addChild(lastRun, beforeChild);
198 RenderInline::removeChild(child);
H A DRenderQuote.h26 #include "RenderInline.h"
30 class RenderQuote FINAL : public RenderInline {
H A DRenderRuby.h35 #include "RenderInline.h"
54 class RenderRubyAsInline : public RenderInline {
H A DRenderLineBoxList.cpp36 #include "RenderInline.h"
226 ListHashSet<RenderInline*> outlineObjects;
267 ListHashSet<RenderInline*>::iterator end = info.outlineObjects->end();
268 for (ListHashSet<RenderInline*>::iterator it = info.outlineObjects->begin(); it != end; ++it) {
269 RenderInline* flow = *it;
317 RenderInline* inlineContainer = container->isRenderInline() ? toRenderInline(container) : 0;
H A DRenderQuote.cpp34 : RenderInline(0)
54 RenderInline::willBeDestroyed();
59 RenderInline::willBeRemovedFromTree();
65 RenderInline::styleDidChange(diff, oldStyle);
H A DRenderBlock.h50 class RenderInline;
265 void addContinuationWithOutline(RenderInline*);
266 bool paintsContinuationOutline(RenderInline*);
270 RenderInline* inlineElementContinuation() const;
H A DRenderBlockLineLayout.cpp35 #include "RenderInline.h"
338 static inline LayoutUnit borderPaddingMarginStart(RenderInline* child)
343 static inline LayoutUnit borderPaddingMarginEnd(RenderInline* child)
368 RenderInline* parentAsRenderInline = toRenderInline(parent);
571 RenderInline* inlineFlow = (obj != this) ? toRenderInline(obj) : 0;
1315 RenderInline* isolatedInline = toRenderInline(highestContainingIsolateWithinRoot(startObj, currentRoot));
2504 static bool requiresLineBoxForContent(RenderInline* flow, const LineInfo& lineInfo)
2515 static bool hasInlineDirectionBordersPaddingOrMargin(RenderInline* flow)
3013 RenderInline* flowBox = toRenderInline(current.m_obj);
H A DRenderBlock.cpp51 #include "RenderInline.h"
112 typedef WTF::HashMap<RenderBlock*, OwnPtr<ListHashSet<RenderInline*> > > ContinuationOutlineTableMap;
1970 newRunIn = new (renderArena()) RenderInline(toElement(runIn->node()));
1999 // be a RenderListBox or RenderMenuList, and hence cannot be a RenderInline run-in.
2055 // original place since that requires writing integration logic with RenderInline::addChild
3312 RenderInline* inlineCont = inlineElementContinuation();
3314 RenderInline* inlineRenderer = toRenderInline(inlineCont->node()->renderer());
3387 RenderInline* RenderBlock::inlineElementContinuation() const
3410 void RenderBlock::addContinuationWithOutline(RenderInline* flow)
3417 ListHashSet<RenderInline*>* continuation
[all...]
H A DRenderTreeAsText.cpp41 #include "RenderInline.h"
249 const RenderInline& inlineFlow = *toRenderInline(&o);
H A DInlineFlowBox.cpp31 #include "RenderInline.h"
332 RenderInline* inlineFlow = toRenderInline(renderer());
1120 RenderInline* inlineFlow = toRenderInline(renderer());
H A DRenderBox.cpp47 #include "RenderInline.h"
2946 const RenderInline* flow = toRenderInline(containingBlock);
2988 const RenderInline* flow = toRenderInline(containingBlock);
3370 const RenderInline* flow = toRenderInline(containerBlock);
3811 const RenderInline* flow = toRenderInline(containerBlock);
H A DRenderObject.h55 class RenderInline;
H A DRenderBoxModelObject.cpp36 #include "RenderInline.h"
397 RenderInline* renderInline = toRenderInline(p);
635 // Note that RenderInline and RenderBox override this to pass a different
642 // Note that RenderInline and RenderBox override this to pass a different
H A DRenderObject.cpp54 #include "RenderInline.h"
199 return new (arena) RenderInline(element);
1218 // localToAbsolute() offset here because RenderInline::addFocusRingRects()
/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityRenderObject.cpp72 #include "RenderInline.h"
251 static inline RenderInline* startOfContinuations(RenderObject* r)
293 static inline RenderObject* childBeforeConsideringContinuations(RenderInline* r, RenderObject* child)
338 RenderInline* startOfConts;
380 RenderInline* inlineContinuation;
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorOverlay.cpp47 #include "RenderInline.h"
152 RenderInline* renderInline = toRenderInline(renderer);
154 // RenderInline's bounding box includes paddings and borders, excludes margins.

Completed in 317 milliseconds