Home
last modified time | relevance | path

Searched refs:unescapeText (Results 1 – 2 of 2) sorted by relevance

/external/protobuf/java/core/src/test/java/com/google/protobuf/
DTextFormatTest.java567 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()
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DTextFormat.java1912 static String unescapeText(final String input) in unescapeText() method in TextFormat