MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlNodeParseContent

Function xmlNodeParseContent

ThirdParty/libxml2/vtklibxml2/tree.c:1467–1470  ·  view source on GitHub ↗

* xmlNodeParseContent: * @node: an element or attribute * @content: text content with XML references * @len: maximum length of content * * Parse content and replace the node's children with the resulting * node list. * * @content is expected to be a valid XML attribute value possibly * containing character and entity references. Syntax errors * and references to undeclared entities ar

Source from the content-addressed store, hash-verified

1465 * Returns 0 on success, -1 if a memory allocation failed.
1466 */
1467int
1468xmlNodeParseContent(xmlNodePtr node, const xmlChar *content, int len) {
1469 return(xmlNodeParseContentInternal(node->doc, node, content, len, NULL));
1470}
1471
1472/**
1473 * xmlStringLenGetNodeList:

Callers 5

SAX2.cFile · 0.85
xmlSAX2AttributeNsFunction · 0.85
xmlNewDocPropFunction · 0.85
xmlNewElemFunction · 0.85

Calls 1

Tested by

no test coverage detected