Home
last modified time | relevance | path

Searched refs:RenderInline (Results 1 – 25 of 46) sorted by relevance

12

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/
H A DRenderInline.h34 class RenderInline : public RenderBoxModelObject {
36 explicit RenderInline(Node*);
72 RenderInline* inlineElementContinuation() const;
101 FloatRect culledInlineBoundingBox(const RenderInline* container) const;
106 void culledInlineAbsoluteQuads(const RenderInline* container, Vector<FloatQuad>&);
163 static RenderInline* cloneInline(RenderInline* src);
175 inline RenderInline* toRenderInline(RenderObject* object) in toRenderInline()
178 return static_cast<RenderInline*>(object); in toRenderInline()
181 inline const RenderInline* toRenderInline(const RenderObject* object) in toRenderInline()
184 return static_cast<const RenderInline*>(object); in toRenderInline()
[all …]
H A DRenderInline.cpp48 RenderInline::RenderInline(Node* node) in RenderInline() function in WebCore::RenderInline
56 void RenderInline::destroy() in destroy()
111 RenderInline* RenderInline::inlineElementContinuation() const in inlineElementContinuation()
274 RenderInline* RenderInline::cloneInline(RenderInline* src) in cloneInline()
276 RenderInline* o = new (src->renderArena()) RenderInline(src->node()); in cloneInline()
568 void RenderInline::culledInlineAbsoluteQuads(const RenderInline* container, Vector<FloatQuad>& quad… in culledInlineAbsoluteQuads()
636 int RenderInline::offsetLeft() const in offsetLeft()
644 int RenderInline::offsetTop() const in offsetTop()
673 int RenderInline::marginTop() const in marginTop()
688 int RenderInline::marginEnd() const in marginEnd()
[all …]
H A DRenderRuby.cpp114 : RenderInline(node) in RenderRubyAsInline()
124 RenderInline::styleDidChange(diff, oldStyle); in styleDidChange()
134 RenderInline::addChild(child, firstChild()); in addChild()
140 RenderInline::addChild(beforeBlock, firstChild()); in addChild()
149 RenderInline::addChild(child); in addChild()
155 RenderInline::addChild(afterBlock); in addChild()
164 RenderInline::addChild(child, beforeChild); in addChild()
188 RenderInline::addChild(lastRun); in addChild()
199 RenderInline::removeChild(child); in removeChild()
H A DPaintInfo.h42 class RenderInline; variable
53 RenderObject* newPaintingRoot, ListHashSet<RenderInline*>* newOutlineObjects,
105 …ListHashSet<RenderInline*>* outlineObjects; // used to list outlines that should be painted by a b…
H A DRenderLineBoxList.cpp226 ListHashSet<RenderInline*> outlineObjects; in paint()
267 ListHashSet<RenderInline*>::iterator end = info.outlineObjects->end(); in paint()
268 … for (ListHashSet<RenderInline*>::iterator it = info.outlineObjects->begin(); it != end; ++it) { in paint()
269 RenderInline* flow = *it; in paint()
320 RenderInline* inlineContainer = container->isRenderInline() ? toRenderInline(container) : 0; in dirtyLinesFromChangedChild()
H A DRenderRuby.h54 class RenderRubyAsInline : public RenderInline {
H A DRenderBlock.h41 class RenderInline; variable
143 void addContinuationWithOutline(RenderInline*);
144 bool paintsContinuationOutline(RenderInline*);
148 RenderInline* inlineElementContinuation() const;
H A DHitTestResult.cpp531 RenderInline* currInline = toRenderInline(curr); in addNodeToRectBasedTestResult()
562 RenderInline* currInline = toRenderInline(curr); in addNodeToRectBasedTestResult()
H A DRenderBlock.cpp1564RenderInline* inlineRunIn = new (renderArena()) RenderInline(runInNode ? runInNode : document()); in handleRunInChild()
2535 RenderInline* inlineCont = inlineElementContinuation(); in paintObject()
2633 RenderInline* RenderBlock::inlineElementContinuation() const in inlineElementContinuation()
2656 void RenderBlock::addContinuationWithOutline(RenderInline* flow) in addContinuationWithOutline()
2663 ListHashSet<RenderInline*>* continuations = table->get(this); in addContinuationWithOutline()
2665 continuations = new ListHashSet<RenderInline*>; in addContinuationWithOutline()
2672 bool RenderBlock::paintsContinuationOutline(RenderInline* flow) in paintsContinuationOutline()
2678 ListHashSet<RenderInline*>* continuations = table->get(this); in paintsContinuationOutline()
2691 ListHashSet<RenderInline*>* continuations = table->get(this); in paintContinuationOutlines()
2699 RenderInline* flow = *it; in paintContinuationOutlines()
[all …]
H A DRenderBlockLineLayout.cpp90 static inline int borderPaddingMarginStart(RenderInline* child) in borderPaddingMarginStart()
95 static inline int borderPaddingMarginEnd(RenderInline* child) in borderPaddingMarginEnd()
106 RenderInline* parentAsRenderInline = toRenderInline(parent); in inlineLogicalWidth()
245 RenderInline* inlineFlow = (obj != this) ? toRenderInline(obj) : 0; in createLineBoxes()
1540 static bool inlineFlowRequiresLineBox(RenderInline* flow) in inlineFlowRequiresLineBox()
2013 RenderInline* flowBox = toRenderInline(current.m_obj); in nextLineBreak()
H A DRenderBox.cpp2109 const RenderInline* flow = toRenderInline(containingBlock); in containingBlockLogicalWidthForPositioned()
2140 const RenderInline* flow = toRenderInline(containingBlock); in containingBlockLogicalHeightForPositioned()
2498 const RenderInline* flow = toRenderInline(containerBlock); in computePositionedLogicalWidthUsing()
2923 const RenderInline* flow = toRenderInline(containerBlock); in computePositionedLogicalWidthReplaced()
H A DInlineFlowBox.cpp311 RenderInline* inlineFlow = toRenderInline(renderer()); in determineSpacingForFlowBoxes()
964 RenderInline* inlineFlow = toRenderInline(renderer()); in paint()
/dports/www/kf5-khtml/khtml-5.89.0/src/rendering/
H A Drender_inline.cpp67 void RenderInline::attach() in attach()
106 RenderInline *RenderInline::cloneInline(RenderFlow *src) in cloneInline()
108 RenderInline *o = new(src->renderArena()) RenderInline(src->element()); in cloneInline()
142 RenderInline *cloneChild = clone; in splitInlines()
836 void RenderInline::calcMinMaxWidth() in calcMinMaxWidth()
851 short RenderInline::width() const in width()
868 int RenderInline::height() const in height()
877 int RenderInline::offsetLeft() const in offsetLeft()
886 int RenderInline::offsetTop() const in offsetTop()
1018 int RenderInline::inlineXPos() const in inlineXPos()
[all …]
H A Drender_inline.h34 class RenderInline : public RenderFlow
37 RenderInline(DOM::NodeImpl *node) : RenderFlow(node), m_isContinuation(false) {} in RenderInline() function
101 static RenderInline *cloneInline(RenderFlow *src);
H A DRenderSVGInline.h33 class RenderSVGInline : public RenderInline
H A DRenderSVGInline.cpp36 : RenderInline(n) in RenderSVGInline()
H A Drender_flow.cpp52 result = new(arena) RenderInline(node); in createFlow()
470 static_cast<RenderInline *>(oo)->paintOutlines(i.p, _tx, _ty); in paintLines()
H A Drender_object.h889 friend class RenderInline; variable
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGInline.cpp34 : RenderInline(n) in RenderSVGInline()
102 RenderInline::destroy(); in destroy()
109 RenderInline::styleWillChange(diff, newStyle); in styleWillChange()
114 RenderInline::styleDidChange(diff, oldStyle); in styleDidChange()
120 RenderInline::updateFromElement(); in updateFromElement()
H A DRenderSVGInline.h31 class RenderSVGInline : public RenderInline {
H A DSVGTextQuery.cpp71 RenderInline* renderInline = toRenderInline(renderer); in flowBoxForRenderer()
/dports/www/kf5-khtml/khtml-5.89.0/src/html/
H A Dhtml_inlineimpl.cpp277 m_render = new(document()->renderArena()) RenderInline(this); in attach()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/accessibility/
H A DAccessibilityRenderObject.cpp221 static inline RenderInline* startOfContinuations(RenderObject* r) in startOfContinuations()
254 static inline RenderObject* childBeforeConsideringContinuations(RenderInline* r, RenderObject* chil… in childBeforeConsideringContinuations()
299 RenderInline* startOfConts; in previousSibling()
341 RenderInline* inlineContinuation; in nextSibling()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/
H A DChangeLog-2009-06-1615747 * rendering/RenderInline.h:
33877 * rendering/RenderInline.h:
38466 * rendering/RenderInline.h:
39706 (WebCore::RenderInline::RenderInline):
39708 * rendering/RenderInline.h:
40930 (WebCore::RenderInline::RenderInline):
43093 (WebCore::RenderInline::RenderInline):
46174 is not a RenderInline.
46626 (WebCore::RenderInline::RenderInline):
47434 (WebCore::RenderInline::RenderInline):
[all …]
H A DChangeLog-2003-10-251853 (RenderInline::splitFlow):
1854 (RenderInline::renderName):
5740 (RenderInline::setStyle):
6417 (RenderInline::splitFlow):
7746 (RenderInline::splitFlow):
12095 (RenderInline::width):
12096 (RenderInline::height):
12994 (RenderInline::setStyle):
13226 (RenderInline::~RenderInline):
13227 (RenderInline::setStyle):
[all …]

12