MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / parse

Method parse

base/poco/XML/src/DOMParser.cpp:91–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89
90
91Document* DOMParser::parse(const XMLString& uri)
92{
93 if (_filterWhitespace)
94 {
95 WhitespaceFilter filter(&_saxParser);
96 DOMBuilder builder(filter, _pNamePool);
97 return builder.parse(uri);
98 }
99 else
100 {
101 DOMBuilder builder(_saxParser, _pNamePool);
102 return builder.parse(uri);
103 }
104}
105
106
107Document* DOMParser::parse(InputSource* pInputSource)

Callers 2

loadMethod · 0.45
loadMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected