Home | History | Annotate | Download | only in src

Lines Matching refs:EscapeXml

3019   static String EscapeXml(const char* str, bool is_attribute);
3024 // Convenience wrapper around EscapeXml when str is an attribute value.
3026 return EscapeXml(str, true);
3029 // Convenience wrapper around EscapeXml when str is not an attribute value.
3030 static String EscapeXmlText(const char* str) { return EscapeXml(str, false); }
3111 String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_attribute) {