Searched refs:unescapeText (Results 1 – 2 of 2) sorted by relevance
567 TextFormat.unescapeText("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"")); in testEscape()571 TextFormat.unescapeText(kEscapeTestStringEscaped)); in testEscape()581 TextFormat.unescapeText("hello")); in testEscape()587 assertEquals("\u1234", TextFormat.unescapeText("\\341\\210\\264")); in testEscape()590 assertEquals("\u1234", TextFormat.unescapeText("\\xe1\\x88\\xb4")); in testEscape()601 TextFormat.unescapeText("\\x"); in testEscape()608 TextFormat.unescapeText("\\z"); in testEscape()615 TextFormat.unescapeText("\\"); in testEscape()
1912 static String unescapeText(final String input) in unescapeText() method in TextFormat