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

Function xmlXPathCacheNewCString

ThirdParty/libxml2/vtklibxml2/xpath.c:1852–1856  ·  view source on GitHub ↗

* xmlXPathCacheNewCString: * @pctxt the XPath context * @val: the char * value * * This is the cached version of xmlXPathNewCString(). * Acquire an xmlXPathObjectPtr of type string and of value @val * * Returns the created or reused object. */

Source from the content-addressed store, hash-verified

1850 * Returns the created or reused object.
1851 */
1852static xmlXPathObjectPtr
1853xmlXPathCacheNewCString(xmlXPathParserContextPtr pctxt, const char *val)
1854{
1855 return xmlXPathCacheNewString(pctxt, BAD_CAST val);
1856}
1857
1858/**
1859 * xmlXPathCacheNewBoolean:

Callers 4

xmlXPathNameFunctionFunction · 0.85

Calls 1

xmlXPathCacheNewStringFunction · 0.85

Tested by

no test coverage detected