MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / recursiveDoElements

Method recursiveDoElements

native/desc/Element.cpp:109–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107 }
108
109 void Element::recursiveDoElements(const std::function<void(std::shared_ptr<Element>)> &doFunc) {
110 if (doFunc != nullptr) {
111 for (const auto &child: this->_children) {
112 doFunc(child);
113 child->recursiveDoElements(doFunc);
114 }
115 }
116 }
117
118 bool Element::_allClickableFalse = false;
119

Callers 1

createFromXmlMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected