Lines Matching refs:callback
213 XMLNode::ForEachChildNode (NodeCallback const &callback) const in ForEachChildNode()
217 GetChild().ForEachSiblingNode(callback); in ForEachChildNode()
222 XMLNode::ForEachChildElement (NodeCallback const &callback) const in ForEachChildElement()
227 child.ForEachSiblingElement(callback); in ForEachChildElement()
232 XMLNode::ForEachChildElementWithName (const char *name, NodeCallback const &callback) const in ForEachChildElementWithName()
237 child.ForEachSiblingElementWithName(name, callback); in ForEachChildElementWithName()
242 XMLNode::ForEachAttribute (AttributeCallback const &callback) const in ForEachAttribute()
260 if (callback(llvm::StringRef((const char *)attr->name), attr_value) == false) in ForEachAttribute()
271 XMLNode::ForEachSiblingNode (NodeCallback const &callback) const in ForEachSiblingNode()
280 if (callback(XMLNode(node)) == false) in ForEachSiblingNode()
288 XMLNode::ForEachSiblingElement (NodeCallback const &callback) const in ForEachSiblingElement()
301 if (callback(XMLNode(node)) == false) in ForEachSiblingElement()
309 XMLNode::ForEachSiblingElementWithName (const char *name, NodeCallback const &callback) const in ForEachSiblingElementWithName()
335 if (callback(XMLNode(node)) == false) in ForEachSiblingElementWithName()