Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A 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/contrib/llvm-project/lldb/source/Host/common/
H A DXML.cpp162 void XMLNode::ForEachChildNode(NodeCallback const &callback) const { in ForEachChildNode()
169 void XMLNode::ForEachChildElement(NodeCallback const &callback) const { in ForEachChildElement()
178 NodeCallback const &callback) const { in ForEachChildElementWithName()
209 void XMLNode::ForEachSiblingNode(NodeCallback const &callback) const { in ForEachSiblingNode()
222 void XMLNode::ForEachSiblingElement(NodeCallback const &callback) const { in ForEachSiblingElement()
240 const char *name, NodeCallback const &callback) const { in ForEachSiblingElementWithName()