Home
last modified time | relevance | path

Searched refs:XmlEscape (Results 1 – 2 of 2) sorted by relevance

/device/google/cuttlefish/host/commands/assemble_cvd/
Dflag_feature.cpp30 static std::string XmlEscape(const std::string& s) { in XmlEscape() function
63 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()
/device/google/cuttlefish/common/libs/utils/
Dflag_parser.cpp237 static std::string XmlEscape(const std::string& s) { in XmlEscape() function
297 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()