May c appear in a well-formed XML document?
| 4325 | |
| 4326 | // May c appear in a well-formed XML document? |
| 4327 | static bool IsValidXmlCharacter(char c) { |
| 4328 | return IsNormalizableWhitespace(c) || c >= 0x20; |
| 4329 | } |
| 4330 | |
| 4331 | // Returns an XML-escaped copy of the input string str. If |
| 4332 | // is_attribute is true, the text is meant to appear as an attribute |
nothing calls this directly
no outgoing calls
no test coverage detected