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

Method toString

base/poco/XML/src/QName.cpp:94–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92
93
94std::string QName::toString() const
95{
96 std::string r;
97 if (!_ns.empty())
98 {
99 r += _ns;
100 r += '#';
101 }
102
103 r += _name;
104 return r;
105}
106
107
108std::ostream& operator << (std::ostream& os, const QName& qn)

Callers 9

QName.cppFile · 0.45
nextExpectMethod · 0.45
popElementMethod · 0.45
getRawMethod · 0.45
setRawMethod · 0.45
initMethod · 0.45
loadConfigurationMethod · 0.45

Calls 1

emptyMethod · 0.45

Tested by

no test coverage detected