Searched refs:XmlEscape (Results 1 – 2 of 2) sorted by relevance
30 static std::string XmlEscape(const std::string& s) { in XmlEscape() function63 out << " <file>" << XmlEscape(flag.filename) << "</file>\n"; in WriteGflagsCompatHelpXml()64 out << " <name>" << XmlEscape(flag.name) << "</name>\n"; in WriteGflagsCompatHelpXml()65 out << " <meaning>" << XmlEscape(flag.description) << "</meaning>\n"; in WriteGflagsCompatHelpXml()66 out << " <default>" << XmlEscape(flag.default_value) << "</default>\n"; in WriteGflagsCompatHelpXml()67 out << " <current>" << XmlEscape(flag.current_value) << "</current>\n"; in WriteGflagsCompatHelpXml()68 out << " <type>" << XmlEscape(flag.type) << "</type>\n"; in WriteGflagsCompatHelpXml()
237 static std::string XmlEscape(const std::string& s) { in XmlEscape() function297 out << " <name>" << XmlEscape(name) << "</name>\n"; in WriteGflagsCompatXml()298 auto help = help_ ? XmlEscape(*help_) : std::string{""}; in WriteGflagsCompatXml()300 auto value = getter_ ? XmlEscape((*getter_)()) : std::string{""}; in WriteGflagsCompatXml()