HomeSort by relevance Sort by last modified time
    Searched refs:xmlAttributeEscaper (Results 1 - 4 of 4) sorted by null

  /external/guava/guava-tests/test/com/google/common/xml/
XmlEscapersTest.java 45 CharEscaper xmlAttributeEscaper = (CharEscaper) XmlEscapers.xmlAttributeEscaper();
46 assertBasicXmlEscaper(xmlAttributeEscaper, true, true);
48 assertEquals(""test"", xmlAttributeEscaper.escape("\"test\""));
49 assertEquals("'test'", xmlAttributeEscaper.escape("\'test'"));
52 xmlAttributeEscaper.escape("a\"b<c>d&e\"f'"));
54 assertEquals("a&#x9;b&#xA;c&#xD;d", xmlAttributeEscaper.escape("a\tb\nc\rd"));
  /external/guava/guava/src/com/google/common/xml/
XmlEscapers.java 68 * {@link #xmlAttributeEscaper} in attribute values.
112 public static Escaper xmlAttributeEscaper() {
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 368 return XmlEscapers.xmlAttributeEscaper().escape(unquoted);
373 return XmlEscapers.xmlAttributeEscaper().escape(unescaped);
  /tools/metalava/src/main/java/com/android/tools/metalava/
ExtractAnnotations.kt 311 return XmlEscapers.xmlAttributeEscaper().escape(unescaped)

Completed in 231 milliseconds