Home
last modified time | relevance | path

Searched refs:beforeChild (Results 1 – 25 of 117) sorted by relevance

12345

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/
H A DRenderTableRow.cpp87 beforeChild = lastChild(); in addChild()
90 RenderObject* last = beforeChild; in addChild()
94 if (beforeChild == last) in addChild()
95 beforeChild = last->firstChild(); in addChild()
96 last->addChild(child, beforeChild); in addChild()
111 addChild(cell, beforeChild); in addChild()
117 while (beforeChild && beforeChild->parent() != this) in addChild()
118 beforeChild = beforeChild->parent(); in addChild()
126 ASSERT(!beforeChild || beforeChild->isTableCell()); in addChild()
127 RenderBox::addChild(cell, beforeChild); in addChild()
[all …]
H A DRenderRuby.cpp128 void RenderRubyAsInline::addChild(RenderObject* child, RenderObject* beforeChild) in addChild() argument
164 RenderInline::addChild(child, beforeChild); in addChild()
168 if (beforeChild && !isAfterContent(beforeChild)) { in addChild()
170 ASSERT(!beforeChild->isRubyRun()); in addChild()
171 RenderObject* run = beforeChild; in addChild()
175 run->addChild(child, beforeChild); in addChild()
271 RenderBlock::addChild(child, beforeChild); in addChild()
275 if (beforeChild && !isAfterContent(beforeChild)) { in addChild()
277 ASSERT(!beforeChild->isRubyRun()); in addChild()
278 RenderObject* run = beforeChild; in addChild()
[all …]
H A DRenderRubyRun.cpp109 void RenderRubyRun::addChild(RenderObject* child, RenderObject* beforeChild) in addChild() argument
114 if (!beforeChild) { in addChild()
119 } else if (beforeChild->isRubyText()) { in addChild()
123 ASSERT(beforeChild->parent() == this); in addChild()
132 RenderBlock::addChild(child, beforeChild); in addChild()
133 RenderBlock::removeChild(beforeChild); in addChild()
134 newRun->addChild(beforeChild); in addChild()
142 rubyBaseSafe()->moveChildren(newRun->rubyBaseSafe(), beforeChild); in addChild()
147 if (beforeChild && beforeChild->isRubyText()) in addChild()
148 beforeChild = 0; in addChild()
[all …]
H A DRenderObjectChildList.cpp191 …nsertChildNode(RenderObject* owner, RenderObject* child, RenderObject* beforeChild, bool fullInser… in insertChildNode() argument
193 if (!beforeChild) { in insertChildNode()
199 while (beforeChild->parent() != owner && beforeChild->parent()->isAnonymousBlock()) in insertChildNode()
200 beforeChild = beforeChild->parent(); in insertChildNode()
201 ASSERT(beforeChild->parent() == owner); in insertChildNode()
205 if (beforeChild == firstChild()) in insertChildNode()
208 RenderObject* prev = beforeChild->previousSibling(); in insertChildNode()
209 child->setNextSibling(beforeChild); in insertChildNode()
210 beforeChild->setPreviousSibling(child); in insertChildNode()
H A DRenderInline.h40 virtual void addChild(RenderObject* newChild, RenderObject* beforeChild = 0);
108 void addChildToContinuation(RenderObject* newChild, RenderObject* beforeChild);
109 … virtual void addChildIgnoringContinuation(RenderObject* newChild, RenderObject* beforeChild = 0);
112 RenderObject* beforeChild, RenderBoxModelObject* oldCont);
113 void splitFlow(RenderObject* beforeChild, RenderBlock* newBlockBox,
166 RenderBoxModelObject* continuationBefore(RenderObject* beforeChild);
H A DRenderInline.cpp213 if (beforeChild && beforeChild->parent() == this) in continuationBefore()
220 if (beforeChild && beforeChild->parent() == curr) { in continuationBefore()
221 if (curr->firstChild() == beforeChild) in continuationBefore()
231 if (!beforeChild && !last->firstChild()) in continuationBefore()
239 if (!beforeChild && isAfterContent(lastChild())) in addChildIgnoringContinuation()
240 beforeChild = lastChild(); in addChildIgnoringContinuation()
261 if (isLastChild && beforeChild != lastChild()) in addChildIgnoringContinuation()
291 RenderObject* o = beforeChild; in splitInlines()
428 …ASSERT(!beforeChild || beforeChild->parent()->isRenderBlock() || beforeChild->parent()->isRenderIn… in addChildToContinuation()
430 if (beforeChild) in addChildToContinuation()
[all …]
/dports/sysutils/plasma5-plasma-systemmonitor/plasma-systemmonitor-5.23.5/src/page/
H A DMoveButton.qml56 var beforeChild = null
66 if (beforeChild === afterChild) {
70 beforeChild = null;
74 …var mappedLeft = beforeChild ? beforeChild.mapFromItem(root.target.parent, rectInParent.left - 2, …
77 if (beforeChild && mappedLeft < beforeChild.width / 2 && mappedLeft > 0) {
78 child = beforeChild;
94 beforeChild = null;
98 …var mappedLeft = beforeChild ? beforeChild.mapFromItem(root.target.parent, x, rectInParent.top - 2…
101 if (beforeChild && mappedLeft < beforeChild.height / 2 && mappedLeft > 0) {
102 child = beforeChild;
[all …]
/dports/www/kf5-khtml/khtml-5.89.0/src/rendering/
H A Drender_flow.cpp60 RenderFlow *RenderFlow::continuationBefore(const RenderObject *beforeChild) in continuationBefore() argument
62 if (beforeChild && beforeChild->parent() == this) { in continuationBefore()
70 if (beforeChild && beforeChild->parent() == curr) { in continuationBefore()
71 if (curr->firstChild() == beforeChild) { in continuationBefore()
82 if (!beforeChild && !last->firstChild()) { in continuationBefore()
90 RenderFlow *flow = continuationBefore(beforeChild); in addChildWithContinuation()
92 RenderObject *bc = beforeChild; in addChildWithContinuation()
102 return beforeChildParent->addChildToFlow(newChild, beforeChild); in addChildWithContinuation()
112 return flow->addChildToFlow(newChild, beforeChild); in addChildWithContinuation()
135 return addChildWithContinuation(newChild, beforeChild); in addChild()
[all …]
H A DRenderSVGContainer.cpp60 void RenderSVGContainer::addChild(RenderObject *newChild, RenderObject *beforeChild) in addChild() argument
62 insertChildNode(newChild, beforeChild); in addChild()
181 void RenderSVGContainer::insertChildNode(RenderObject *child, RenderObject *beforeChild) in insertChildNode() argument
183 if (!beforeChild) { in insertChildNode()
189 ASSERT(beforeChild->parent() == this); in insertChildNode()
192 if (beforeChild == m_firstChild) { in insertChildNode()
196 RenderObject *prev = beforeChild->previousSibling(); in insertChildNode()
197 child->setNextSibling(beforeChild); in insertChildNode()
198 beforeChild->setPreviousSibling(child); in insertChildNode()
H A Drender_container.cpp122 RenderObject *last = beforeChild ? beforeChild->previousSibling() : lastChild(); in addChild()
135 addChild(table, beforeChild); in addChild()
140 insertChildNode(newChild, beforeChild); in addChild()
602 if (!beforeChild) { in insertChildNode()
608 while (beforeChild->parent() != this && beforeChild->parent()->isAnonymous()) { in insertChildNode()
609 beforeChild = beforeChild->parent(); in insertChildNode()
611 KHTMLAssert(beforeChild->parent() == this); in insertChildNode()
613 if (beforeChild == firstChild()) { in insertChildNode()
617 RenderObject *prev = beforeChild->previousSibling(); in insertChildNode()
618 child->setNextSibling(beforeChild); in insertChildNode()
[all …]
H A Drender_flow.h63 RenderFlow *continuationBefore(const RenderObject *beforeChild);
65 void addChildWithContinuation(RenderObject *newChild, RenderObject *beforeChild);
66 virtual void addChildToFlow(RenderObject *newChild, RenderObject *beforeChild) = 0;
67 void addChild(RenderObject *newChild, RenderObject *beforeChild = nullptr) override;
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/devel/gh/cli-2.4.0/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go45 beforeChild nodeType = 64 const
93 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
168 case ntAlternate | beforeChild:
187 case ntTestref | beforeChild:
210 case ntTestgroup | beforeChild:
236 case ntLoop | beforeChild, ntLazyloop | beforeChild:
275 case ntGroup | beforeChild, ntGroup | afterChild:
277 case ntCapture | beforeChild:
283 case ntRequire | beforeChild:
297 case ntPrevent | beforeChild:
[all …]
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/devel/chroma/chroma-0.9.2/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/misc/cheat/cheat-4.2.2/vendor/github.com/dlclark/regexp2/regexp2-1.4.0/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/misc/cheat/cheat-4.2.2/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/sysutils/glow/glow-0.2.0/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/dlclark/regexp2/regexp2-1.1.6/syntax/
H A Dwriter.go44 beforeChild nodeType = 64 const
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/dlclark/regexp2/syntax/
H A Dwriter.go44 beforeChild nodeType = 64
94 w.emitFragment(curNode.t|beforeChild, curNode, curChild)
174 case ntAlternate | beforeChild:
193 case ntTestref | beforeChild:
216 case ntTestgroup | beforeChild:
242 case ntLoop | beforeChild, ntLazyloop | beforeChild:
281 case ntGroup | beforeChild, ntGroup | afterChild:
283 case ntCapture | beforeChild:
289 case ntRequire | beforeChild:
303 case ntPrevent | beforeChild:
[all …]

12345