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

Function xmlStringGetNodeList

ThirdParty/libxml2/vtklibxml2/tree.c:1512–1518  ·  view source on GitHub ↗

* xmlStringGetNodeList: * @doc: a document (optional) * @value: an attribute value * * DEPRECATED: Use xmlNodeSetContent. * * Parse an attribute value and build a node list containing only * text and entity reference nodes. The resulting nodes will be * associated with the document if provided. The document is also * used to look up entities. * * The input is not validated. Syntax err

Source from the content-addressed store, hash-verified

1510 * allocation failed.
1511 */
1512xmlNodePtr
1513xmlStringGetNodeList(const xmlDoc *doc, const xmlChar *value) {
1514 xmlNodePtr ret;
1515
1516 xmlNodeParseContentInternal(doc, NULL, value, -1, &ret);
1517 return(ret);
1518}
1519
1520/**
1521 * xmlNodeListGetStringInternal:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected