Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DXML.h40 typedef std::function<bool(const XMLNode &node)> NodeCallback; typedef
91 void ForEachSiblingNode(NodeCallback const &callback) const;
96 void ForEachSiblingElement(NodeCallback const &callback) const;
103 NodeCallback const &callback) const;
105 void ForEachChildNode(NodeCallback const &callback) const;
107 void ForEachChildElement(NodeCallback const &callback) const;
110 NodeCallback const &callback) const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A 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()