Home | History | Annotate | Download | only in src

Lines Matching refs:EscapeXml

2989   static String EscapeXml(const char* str, bool is_attribute);
2994 // Convenience wrapper around EscapeXml when str is an attribute value.
2996 return EscapeXml(str, true);
2999 // Convenience wrapper around EscapeXml when str is not an attribute value.
3000 static String EscapeXmlText(const char* str) { return EscapeXml(str, false); }
3081 String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_attribute) {