MCPcopy Create free account
hub / github.com/Kitware/CMake / cmXMLParserStartElement

Function cmXMLParserStartElement

Source/cmXMLParser.cxx:158–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156}
157
158void cmXMLParserStartElement(void* parser, char const* name, char const** atts)
159{
160 // Begin element handler that is registered with the XML_Parser.
161 // This just casts the user data to a cmXMLParser and calls
162 // StartElement.
163 static_cast<cmXMLParser*>(parser)->StartElement(name, atts);
164}
165
166void cmXMLParserEndElement(void* parser, char const* name)
167{

Callers

nothing calls this directly

Calls 1

StartElementMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…