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

Function xmlXPathFalseFunction

ThirdParty/libxml2/vtklibxml2/xpath.c:8453–8457  ·  view source on GitHub ↗

* xmlXPathFalseFunction: * @ctxt: the XPath Parser context * @nargs: the number of arguments * * Implement the false() XPath function * boolean false() */

Source from the content-addressed store, hash-verified

8451 * boolean false()
8452 */
8453void
8454xmlXPathFalseFunction(xmlXPathParserContextPtr ctxt, int nargs) {
8455 CHECK_ARITY(0);
8456 valuePush(ctxt, xmlXPathCacheNewBoolean(ctxt, 0));
8457}
8458
8459/**
8460 * xmlXPathLangFunction:

Callers

nothing calls this directly

Calls 2

valuePushFunction · 0.85
xmlXPathCacheNewBooleanFunction · 0.85

Tested by

no test coverage detected