/external/protobuf/python/google/protobuf/internal/ |
D | text_encoding_test.py | 59 for escaped, escaped_utf8, unescaped in TEST_VALUES: 61 text_encoding.CEscape(unescaped, as_utf8=False)) 63 text_encoding.CEscape(unescaped, as_utf8=True)) 66 for escaped, escaped_utf8, unescaped in TEST_VALUES: 67 self.assertEqual(unescaped, text_encoding.CUnescape(escaped)) 68 self.assertEqual(unescaped, text_encoding.CUnescape(escaped_utf8))
|
/external/webrtc/webrtc/base/ |
D | base64_unittest.cc | 343 std::string unescaped; in Base64Unescape() local 344 EXPECT_TRUE(Base64::DecodeFromArray(src, szsrc, Base64::DO_LAX, &unescaped, in Base64Unescape() 346 memcpy(dest, unescaped.data(), min(unescaped.size(), szdest)); in Base64Unescape() 347 return unescaped.size(); in Base64Unescape() 903 char unescaped[64 * 1024]; in TEST() local 908 unescaped, in TEST() 909 sizeof(unescaped)); in TEST() 912 EXPECT_EQ(0, memcmp(testbase64, unescaped, sizeof(testbase64))); in TEST()
|
/external/curl/lib/ |
D | ldap.c | 799 char *unescaped; in _ldap_url_parse2() local 805 result = Curl_urldecode(conn->data, dn, 0, &unescaped, NULL, FALSE); in _ldap_url_parse2() 814 ludp->lud_dn = Curl_convert_UTF8_to_tchar(unescaped); in _ldap_url_parse2() 817 Curl_unicodefree(unescaped); in _ldap_url_parse2() 825 ludp->lud_dn = unescaped; in _ldap_url_parse2() 864 char *unescaped; in _ldap_url_parse2() local 870 result = Curl_urldecode(conn->data, attributes[i], 0, &unescaped, NULL, in _ldap_url_parse2() 882 ludp->lud_attrs[i] = Curl_convert_UTF8_to_tchar(unescaped); in _ldap_url_parse2() 885 Curl_unicodefree(unescaped); in _ldap_url_parse2() 895 ludp->lud_attrs[i] = unescaped; in _ldap_url_parse2() [all …]
|
/external/libxml2/ |
D | xmlIO.c | 859 char *unescaped; in xmlFileOpen() local 864 unescaped = xmlURIUnescapeString(filename, 0, NULL); in xmlFileOpen() 865 if (unescaped != NULL) { in xmlFileOpen() 866 retval = xmlFileOpen_real(unescaped); in xmlFileOpen() 867 xmlFree(unescaped); in xmlFileOpen() 1121 char *unescaped; in xmlGzfileOpen() local 1126 unescaped = xmlURIUnescapeString(filename, 0, NULL); in xmlGzfileOpen() 1127 if (unescaped != NULL) { in xmlGzfileOpen() 1128 retval = xmlGzfileOpen_real(unescaped); in xmlGzfileOpen() 1130 xmlFree(unescaped); in xmlGzfileOpen() [all …]
|
D | nanoftp.c | 466 char *unescaped; in xmlNanoFTPNewCtxt() local 482 unescaped = xmlURIUnescapeString(URL, 0, NULL); in xmlNanoFTPNewCtxt() 483 if (unescaped != NULL) { in xmlNanoFTPNewCtxt() 484 xmlNanoFTPScanURL(ret, unescaped); in xmlNanoFTPNewCtxt() 485 xmlFree(unescaped); in xmlNanoFTPNewCtxt()
|
/external/libxml2/result/ |
D | xhtml1.rde | 22 ... unescaped script < content ...
|
D | xhtml1.rdr | 22 ... unescaped script < content ...
|
D | xhtml1.sax | 25 ... unescaped script , 24)
|
D | xhtml1.sax2 | 25 ... unescaped script , 24)
|
/external/markdown/MarkdownTest/Tests_2007/ |
D | Backslash escapes.text | 118 This is a tag with unescaped backticks <span attr='`ticks`'>bar</span>.
|
/external/python/cpython2/Doc/library/ |
D | future_builtins.rst | 34 printable Unicode characters unescaped, while :func:`ascii` will always
|
D | xml.sax.utils.rst | 35 are always unescaped, even if *entities* is provided.
|
D | re.rst | 526 when in a character class or when preceded by an unescaped backslash. 528 preceded by an unescaped backslash, all characters from the leftmost such
|
/external/protobuf/src/google/protobuf/stubs/ |
D | strutil.cc | 457 scoped_array<char> unescaped(new char[src.size() + 1]); in UnescapeCEscapeString() local 458 int len = UnescapeCEscapeSequences(src.c_str(), unescaped.get(), errors); in UnescapeCEscapeString() 460 dest->assign(unescaped.get(), len); in UnescapeCEscapeString() 465 scoped_array<char> unescaped(new char[src.size() + 1]); in UnescapeCEscapeString() local 466 int len = UnescapeCEscapeSequences(src.c_str(), unescaped.get(), NULL); in UnescapeCEscapeString() 467 return string(unescaped.get(), len); in UnescapeCEscapeString()
|
/external/libxml2/result/noent/ |
D | xhtml1.sax2 | 25 ... unescaped script , 24)
|
/external/libxml2/os400/libxmlrpg/ |
D | uri.rpgle | 21 * Note: query is a deprecated field which is incorrectly unescaped.
|
/external/mksh/src/ |
D | edit.c | 2760 char *unescaped; in do_complete() local 2763 strndupx(unescaped, xbuf + start, olen, ATEMP); in do_complete() 2766 unescaped = x_glob_hlp_tilde_and_rem_qchar(unescaped, true); in do_complete() 2773 completed = !strncmp(words[0], unescaped, strlen(unescaped)); in do_complete() 2775 afree(unescaped, ATEMP); in do_complete()
|
/external/python/cpython2/Lib/test/ |
D | test_codecs.py | 2186 unescaped = b"space tab eol\n" 2187 self.assertEqual(codecs.decode(unescaped, "quopri-codec"), unescaped)
|
/external/python/cpython2/Doc/reference/ |
D | lexical_analysis.rst | 466 In triple-quoted strings, unescaped newlines and quotes are allowed (and are 467 retained), except that three unescaped quotes in a row terminate the string. (A
|
/external/python/cpython2/Doc/howto/ |
D | regex.rst | 621 whitespace is in a character class or preceded by an unescaped backslash; this 624 a ``'#'`` that's neither in a character class or preceded by an unescaped
|
/external/bison/po/ |
D | ru.po | 1342 #~ msgid "unescaped newline in constant"
|
D | tr.po | 1278 #~ msgid "unescaped newline in constant"
|
D | de.po | 1314 #~ msgid "unescaped newline in constant"
|
D | hr.po | 1324 #~ msgid "unescaped newline in constant"
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 707 of reasons. They allow you to include unescaped single and double
|