Lines Matching +defs:xml +defs:node +defs:name
54 bool XMLDocument::ParseMemory(const char *xml, size_t xml_length, in ParseMemory()
95 XMLNode::XMLNode(XMLNodeImpl node) : m_node(node) {} in XMLNode()
135 std::string XMLNode::GetAttributeValue(const char *name, in GetAttributeValue()
156 bool XMLNode::GetAttributeValueAsUnsigned(const char *name, uint64_t &value, in GetAttributeValueAsUnsigned()
177 void XMLNode::ForEachChildElementWithName(const char *name, in ForEachChildElementWithName()
214 for (xmlNodePtr node = m_node; node; node = node->next) { in ForEachSiblingNode() local
227 for (xmlNodePtr node = m_node; node; node = node->next) { in ForEachSiblingElement() local
240 const char *name, NodeCallback const &callback) const { in ForEachSiblingElementWithName() argument
245 for (xmlNodePtr node = m_node; node; node = node->next) { in ForEachSiblingElementWithName() local
285 for (xmlNodePtr node = m_node->children; node != nullptr; in GetElementText() local
333 name, [&result_node](const XMLNode &node) -> bool { in FindFirstChildElementWithName()
360 XMLNode node = FindFirstChildElementWithName(path[0].c_str()); in GetElementForPath() local
435 bool ApplePropertyList::ExtractStringFromValueNode(const XMLNode &node, in ExtractStringFromValueNode()
456 static StructuredData::ObjectSP CreatePlistValue(XMLNode node) { in CreatePlistValue()
461 node.ForEachChildElement([&array_sp](const XMLNode &node) -> bool { in CreatePlistValue()
471 [&key_node, &dict_sp](const XMLNode &node) -> bool { in CreatePlistValue()