Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/
DXML.h41 typedef std::function<bool(const XMLNode &node)> NodeCallback; typedef
90 void ForEachSiblingNode(NodeCallback const &callback) const;
93 void ForEachSiblingElement(NodeCallback const &callback) const;
98 NodeCallback const &callback) const;
100 void ForEachChildNode(NodeCallback const &callback) const;
102 void ForEachChildElement(NodeCallback const &callback) const;
105 NodeCallback const &callback) const;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
DXML.cpp166 void XMLNode::ForEachChildNode(NodeCallback const &callback) const { in ForEachChildNode()
173 void XMLNode::ForEachChildElement(NodeCallback const &callback) const { in ForEachChildElement()
182 NodeCallback const &callback) const { in ForEachChildElementWithName()
213 void XMLNode::ForEachSiblingNode(NodeCallback const &callback) const { in ForEachSiblingNode()
226 void XMLNode::ForEachSiblingElement(NodeCallback const &callback) const { in ForEachSiblingElement()
244 const char *name, NodeCallback const &callback) const { in ForEachSiblingElementWithName()