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

Function xmlGetLineNo

ThirdParty/libxml2/vtklibxml2/tree.c:4794–4798  ·  view source on GitHub ↗

* xmlGetLineNo: * @node: valid node * * Get line number of @node. * Try to override the limitation of lines being store in 16 bits ints * if XML_PARSE_BIG_LINES parser option was used * * Returns the line number if successful, -1 otherwise */

Source from the content-addressed store, hash-verified

4792 * Returns the line number if successful, -1 otherwise
4793 */
4794long
4795xmlGetLineNo(const xmlNode *node)
4796{
4797 return(xmlGetLineNoInternal(node, 0));
4798}
4799
4800#if defined(LIBXML_TREE_ENABLED) || defined(LIBXML_DEBUG_ENABLED)
4801/**

Callers 11

xmlAddIDInternalFunction · 0.85
xmlAddRefFunction · 0.85
xmlconfTestItemFunction · 0.85
xmlVUpdateErrorFunction · 0.85
xmlTextReaderLocatorFunction · 0.85
xsdIncorrectTestCaseFunction · 0.85
xsdTestCaseFunction · 0.85
xstcTestInstanceFunction · 0.85
xstcTestGroupFunction · 0.85

Calls 1

xmlGetLineNoInternalFunction · 0.85

Tested by

no test coverage detected