Home
last modified time | relevance | path

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

/frameworks/opt/vcard/java/com/android/vcard/
DVCardParserImpl_V40.java56 return unescapeText(text); in maybeUnescapeText()
59 public static String unescapeText(final String text) { in unescapeText() method in VCardParserImpl_V40
DVCardParserImpl_V30.java324 return unescapeText(text); in maybeUnescapeText()
327 public static String unescapeText(final String text) { in unescapeText() method in VCardParserImpl_V30
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/test/java/com/google/protobuf/
DTextFormatTest.java568 TextFormat.unescapeText("\\000\\001\\a\\b\\f\\n\\r\\t\\v\\\\\\'\\\"")); in testEscape()
572 TextFormat.unescapeText(kEscapeTestStringEscaped)); in testEscape()
582 TextFormat.unescapeText("hello")); in testEscape()
588 assertEquals("\u1234", TextFormat.unescapeText("\\341\\210\\264")); in testEscape()
591 assertEquals("\u1234", TextFormat.unescapeText("\\xe1\\x88\\xb4")); in testEscape()
602 TextFormat.unescapeText("\\x"); in testEscape()
609 TextFormat.unescapeText("\\z"); in testEscape()
616 TextFormat.unescapeText("\\"); in testEscape()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DTextFormat.java1941 static String unescapeText(final String input) in unescapeText() method in TextFormat