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

Function xmlParseContent

ThirdParty/libxml2/vtklibxml2/parser.c:9851–9862  ·  view source on GitHub ↗

* xmlParseContent: * @ctxt: an XML parser context * * Parse XML element content. This is useful if you're only interested * in custom SAX callbacks. If you want a node list, use * xmlParseInNodeContext. */

Source from the content-addressed store, hash-verified

9849 * xmlParseInNodeContext.
9850 */
9851void
9852xmlParseContent(xmlParserCtxtPtr ctxt) {
9853 if ((ctxt == NULL) || (ctxt->input == NULL))
9854 return;
9855
9856 xmlCtxtInitializeLate(ctxt);
9857
9858 xmlParseContentInternal(ctxt);
9859
9860 if (ctxt->input->cur < ctxt->input->end)
9861 xmlFatalErr(ctxt, XML_ERR_NOT_WELL_BALANCED, NULL);
9862}
9863
9864/**
9865 * xmlParseElement:

Callers

nothing calls this directly

Calls 3

xmlCtxtInitializeLateFunction · 0.85
xmlParseContentInternalFunction · 0.85
xmlFatalErrFunction · 0.85

Tested by

no test coverage detected