Home
last modified time | relevance | path

Searched refs:childHead_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dcomponent.cpp66 : childHead_(nullptr), in Component()
1696 if (childHead_ == nullptr) { in AddChild()
1699 childHead_ = childNode; in AddChild()
1704 Component *temp = childHead_; in AddChild()
1719 if ((childNode == nullptr) || (childHead_ == nullptr)) { in RemoveChild()
1729 if (childNode == childHead_) { in RemoveChild()
1731 Component *next = const_cast<Component *>(childHead_->GetNextSibling()); in RemoveChild()
1734 childHead_ = next; in RemoveChild()
1740 Component *temp = childHead_; in RemoveChild()
1761 while (childHead_ != nullptr) { in RemoveAllChildren()
[all …]
H A Dcomponent.h194 return childHead_; in GetChildHead()
599 Component *childHead_; variable