Home
last modified time | relevance | path

Searched refs:first_child_ (Results 1 – 25 of 40) sorted by relevance

12

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/libjingle_xmpp/xmllite/
H A Dxmlelement.cc61 first_child_(NULL), in XmlElement()
71 first_child_(NULL), in XmlElement()
88 XmlChild ** ppLast = &first_child_; in XmlElement()
109 first_child_(NULL), in XmlElement()
127 if (first_child_ && first_child_->IsText() && last_child_ == first_child_) { in BodyText()
137 } else if (first_child_ == NULL) { in SetBodyText()
139 } else if (first_child_->IsText() && last_child_ == first_child_) { in SetBodyText()
232 return first_child_; in FirstChild()
334 first_child_ = next; in InsertChildAfter()
346 next = first_child_; in RemoveChildAfter()
[all …]
/dports/net-im/kopete/kopete-21.12.3/protocols/jabber/libjingle/talk/xmllite/
H A Dxmlelement.cc78 first_child_(NULL), in XmlElement()
88 first_child_(NULL), in XmlElement()
105 XmlChild ** ppLast = &first_child_; in XmlElement()
126 first_child_(NULL), in XmlElement()
144 if (first_child_ && first_child_->IsText() && last_child_ == first_child_) { in BodyText()
154 } else if (first_child_ == NULL) { in SetBodyText()
156 } else if (first_child_->IsText() && last_child_ == first_child_) { in SetBodyText()
249 return first_child_; in FirstChild()
351 first_child_ = next; in InsertChildAfter()
363 next = first_child_; in RemoveChildAfter()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libjingle_xmpp/xmllite/
H A Dxmlelement.cc61 first_child_(NULL), in XmlElement()
71 first_child_(NULL), in XmlElement()
88 XmlChild ** ppLast = &first_child_; in XmlElement()
109 first_child_(NULL), in XmlElement()
127 if (first_child_ && first_child_->IsText() && last_child_ == first_child_) { in BodyText()
137 } else if (first_child_ == NULL) { in SetBodyText()
139 } else if (first_child_->IsText() && last_child_ == first_child_) { in SetBodyText()
232 return first_child_; in FirstChild()
334 first_child_ = next; in InsertChildAfter()
346 next = first_child_; in RemoveChildAfter()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/layout/
H A Dcounter_node.cc42 first_child_(nullptr), in CounterNode()
56 if (parent_->first_child_ == this) in ~CounterNode()
74 if (first_child_) { in ~CounterNode()
117 if (CounterNode* next = first_child_) in NextInPreOrder()
154 DCHECK_EQ(parent_->first_child_, this); in ComputeCountInParent()
265 next = first_child_; in InsertAfter()
266 first_child_ = new_child; in InsertAfter()
325 new_child->first_child_ = nullptr; in InsertAfter()
334 DCHECK(!old_child->first_child_); in RemoveChild()
347 DCHECK_EQ(first_child_, old_child); in RemoveChild()
[all …]
H A Dlayout_object_child_list.h40 LayoutObjectChildList() : first_child_(nullptr), last_child_(nullptr) {} in LayoutObjectChildList()
42 LayoutObject* FirstChild() const { return first_child_; } in FirstChild()
63 LayoutObject* first_child_; variable
H A Dcounter_node.h68 CounterNode* FirstChild() const { return first_child_; } in FirstChild()
107 CounterNode* first_child_; variable
H A Dlayout_object_child_list.cc146 first_child_ = old_child->NextSibling(); in RemoveChildNode()
195 first_child_ = new_child; in InsertChildNode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/wtf/
H A Dtree_node.h64 first_child_(nullptr), in TreeNode()
70 NodeType* FirstChild() const { return first_child_; } in FirstChild()
77 return !parent_ && !next_ && !previous_ && !first_child_ && !last_child_; in Orphan()
79 bool HasChildren() const { return first_child_; } in HasChildren()
101 first_child_ = new_child; in InsertBefore()
112 DCHECK(!first_child_); in AppendChild()
113 last_child_ = first_child_ = child; in AppendChild()
128 if (first_child_ == child) in RemoveChild()
129 first_child_ = child->Next(); in RemoveChild()
158 NodeType* first_child_; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/wtf/
H A Dtree_node.h63 first_child_(nullptr), in TreeNode()
69 NodeType* FirstChild() const { return first_child_; } in FirstChild()
76 return !parent_ && !next_ && !previous_ && !first_child_ && !last_child_; in Orphan()
78 bool HasChildren() const { return first_child_; } in HasChildren()
100 first_child_ = new_child; in InsertBefore()
111 DCHECK(!first_child_); in AppendChild()
112 last_child_ = first_child_ = child; in AppendChild()
127 if (first_child_ == child) in RemoveChild()
128 first_child_ = child->Next(); in RemoveChild()
157 NodeType* first_child_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/layout/
H A Dcounter_node.cc42 first_child_(nullptr), in CounterNode()
56 if (parent_->first_child_ == this) in ~CounterNode()
74 if (first_child_) { in ~CounterNode()
117 if (CounterNode* next = first_child_) in NextInPreOrder()
162 DCHECK_EQ(parent_->first_child_, this); in ComputeCountInParent()
298 next = first_child_; in InsertAfter()
299 first_child_ = new_child; in InsertAfter()
358 new_child->first_child_ = nullptr; in InsertAfter()
367 DCHECK(!old_child->first_child_); in RemoveChild()
380 DCHECK_EQ(first_child_, old_child); in RemoveChild()
[all …]
H A Dlayout_object_child_list.h40 LayoutObjectChildList() : first_child_(nullptr), last_child_(nullptr) {} in LayoutObjectChildList()
42 LayoutObject* FirstChild() const { return first_child_; } in FirstChild()
63 LayoutObject* first_child_; variable
H A Dcounter_node.h86 CounterNode* FirstChild() const { return first_child_; } in FirstChild()
125 CounterNode* first_child_; variable
H A Dlayout_object_child_list.cc151 first_child_ = old_child->NextSibling(); in RemoveChildNode()
200 first_child_ = new_child; in InsertChildNode()
/dports/games/widelands/widelands-build21/src/ui_basic/
H A Dpanel.cc59 first_child_(nullptr), in Panel()
80 next_ = parent_->first_child_; in Panel()
87 parent_->first_child_ = this; in Panel()
138 while (first_child_) { in free_children()
140 delete first_child_; in free_children()
141 first_child_ = next_child; in free_children()
143 first_child_ = nullptr; in free_children()
435 parent_->first_child_ = this; in move_to_top()
599 p = first_child_; in handle_key()
611 p = first_child_; in handle_key()
[all …]
H A Dpanel.h203 return first_child_; in get_first_child()
206 return first_child_; in get_first_child()
374 Panel* first_child_; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/exported/
H A Dweb_frame.cc66 if (parent_->first_child_ == this) in Swap()
67 parent_->first_child_ = frame; in Swap()
194 next = first_child_; in InsertAfter()
195 first_child_ = new_child; in InsertAfter()
223 if (first_child_ == child) in RemoveChild()
224 first_child_ = child->next_sibling_; in RemoveChild()
255 return first_child_; in FirstChild()
296 first_child_(nullptr), in WebFrame()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/dom/
H A Dcontainer_node.h93 Node* firstChild() const { return first_child_; } in firstChild()
95 bool HasChildren() const { return first_child_; } in HasChildren()
98 return first_child_ && !first_child_->nextSibling(); in HasOneChild()
101 return HasOneChild() && first_child_->IsTextNode(); in HasOneTextChild()
402 first_child_ = child; in SetFirstChild()
476 Member<Node> first_child_; variable
486 Node* child = first_child_;
496 : Node(tree_scope, type), first_child_(nullptr), last_child_(nullptr) {}
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/dom/
H A Dcontainer_node.h93 Node* firstChild() const { return first_child_; } in firstChild()
95 bool HasChildren() const { return first_child_; } in HasChildren()
98 return first_child_ && !first_child_->nextSibling(); in HasOneChild()
101 return HasOneChild() && first_child_->IsTextNode(); in HasOneTextChild()
407 first_child_ = child; in SetFirstChild()
481 Member<Node> first_child_; variable
491 Node* child = first_child_;
501 : Node(tree_scope, type), first_child_(nullptr), last_child_(nullptr) {}
/dports/biology/scrm/scrm-1.7.4/src/
H A Dnode.h93 Node *first_child() const { return this->first_child_; } in first_child()
94 void set_first_child(Node *first_child) { this->first_child_ = first_child; } in set_first_child()
179 Node *first_child_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/frame/
H A Dframe.cc108 visitor->Trace(first_child_); in Trace()
442 next = first_child_; in InsertAfter()
443 first_child_ = new_child; in InsertAfter()
602 if (parent_->first_child_ == this) { in Swap()
603 parent_->first_child_ = new_frame; in Swap()
659 if (first_child_ == child) { in RemoveChild()
660 first_child_ = child->next_sibling_; in RemoveChild()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/paint/ng/
H A Dng_paint_fragment.h130 NGPaintFragment* FirstChild() const { return FirstAlive(first_child_.get()); } in FirstChild()
301 previous_instance(std::move(parent->first_child_)) {} in CreateContext()
353 scoped_refptr<NGPaintFragment> first_child_; variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/paint/ng/
H A Dng_paint_fragment.h130 NGPaintFragment* FirstChild() const { return FirstAlive(first_child_.get()); } in FirstChild()
285 previous_instance(std::move(parent->first_child_)) {} in CreateContext()
335 scoped_refptr<NGPaintFragment> first_child_; variable
H A Dng_paint_fragment.cc138 if (first_child_) { in RemoveChildren()
139 DestroyAll(std::move(first_child_)); in RemoveChildren()
140 DCHECK(!first_child_); in RemoveChildren()
255 if (!context->populate_children && previous_instance->first_child_) { in CreateOrReuse()
361 DCHECK(!first_child_); in PopulateDescendants()
362 scoped_refptr<NGPaintFragment>* last_child_ptr = &first_child_; in PopulateDescendants()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/layout/line/
H A Dinline_flow_box.h48 first_child_(nullptr), in InlineFlowBox()
99 InlineBox* FirstChild() const { return first_child_; } in FirstChild()
470 InlineBox* first_child_; variable
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/layout/line/
H A Dinline_flow_box.h47 first_child_(nullptr), in InlineFlowBox()
98 InlineBox* FirstChild() const { return first_child_; } in FirstChild()
462 InlineBox* first_child_; variable

12