Home | History | Annotate | Download | only in googletest

Lines Matching refs:EscapeXml

3003   static String EscapeXml(const char* str, bool is_attribute);
3008 // Convenience wrapper around EscapeXml when str is an attribute value.
3010 return EscapeXml(str, true);
3013 // Convenience wrapper around EscapeXml when str is not an attribute value.
3014 static String EscapeXmlText(const char* str) { return EscapeXml(str, false); }
3095 String XmlUnitTestResultPrinter::EscapeXml(const char* str, bool is_attribute) {