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

Function xmlXPathCompiledEval

ThirdParty/libxml2/vtklibxml2/xpath.c:13193–13200  ·  view source on GitHub ↗

* xmlXPathCompiledEval: * @comp: the compiled XPath expression * @ctx: the XPath context * * Evaluate the Precompiled XPath expression in the given context. * * Returns the xmlXPathObjectPtr resulting from the evaluation or NULL. * the caller has to free the object. */

Source from the content-addressed store, hash-verified

13191 * the caller has to free the object.
13192 */
13193xmlXPathObjectPtr
13194xmlXPathCompiledEval(xmlXPathCompExprPtr comp, xmlXPathContextPtr ctx)
13195{
13196 xmlXPathObjectPtr res = NULL;
13197
13198 xmlXPathCompiledEvalInternal(comp, ctx, &res, 0);
13199 return(res);
13200}
13201
13202/**
13203 * xmlXPathCompiledEvalToBoolean:

Callers 6

xmlSchematronRunTestFunction · 0.85
runtest.cFile · 0.85
getNextFunction · 0.85
getStringFunction · 0.85

Calls 1

Tested by

no test coverage detected