| 353 | namespace { |
| 354 | |
| 355 | void AppendXMLTag(const char* tag, const string& txt, string* r) { |
| 356 | strings::SubstituteAndAppend(r, "<$0>$1</$0>", tag, EscapeForHtmlToString(txt)); |
| 357 | } |
| 358 | |
| 359 | static string DescribeOneFlagInXML(const CommandLineFlagInfo& flag) { |
| 360 | unordered_set<string> tags; |
no test coverage detected