Searched refs:unescapeText (Results 1 – 2 of 2) sorted by relevance
852 TextFormat.unescapeText("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"")); in testEscape()854 assertEquals(ESCAPE_TEST_STRING, TextFormat.unescapeText(ESCAPE_TEST_STRING_ESCAPED)); in testEscape()860 assertEquals("hello", TextFormat.unescapeText("hello")); in testEscape()865 assertEquals("\u1234", TextFormat.unescapeText("\\341\\210\\264")); in testEscape()867 assertEquals("\u1234", TextFormat.unescapeText("\\xe1\\x88\\xb4")); in testEscape()877 TextFormat.unescapeText("\\x"); in testEscape()884 TextFormat.unescapeText("\\z"); in testEscape()891 TextFormat.unescapeText("\\"); in testEscape()
2427 static String unescapeText(final String input) throws InvalidEscapeSequenceException { in unescapeText() method in TextFormat