Home
last modified time | relevance | path

Searched refs:unescaped (Results 1 – 25 of 33) sorted by relevance

12

/external/protobuf/python/google/protobuf/internal/
Dtext_encoding_test.py59 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/
Dbase64_unittest.cc343 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/
Dldap.c799 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/
DxmlIO.c859 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 …]
Dnanoftp.c466 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/
Dxhtml1.rde22 ... unescaped script < content ...
Dxhtml1.rdr22 ... unescaped script < content ...
Dxhtml1.sax25 ... unescaped script , 24)
Dxhtml1.sax225 ... unescaped script , 24)
/external/markdown/MarkdownTest/Tests_2007/
DBackslash escapes.text118 This is a tag with unescaped backticks <span attr='`ticks`'>bar</span>.
/external/python/cpython2/Doc/library/
Dfuture_builtins.rst34 printable Unicode characters unescaped, while :func:`ascii` will always
Dxml.sax.utils.rst35 are always unescaped, even if *entities* is provided.
Dre.rst526 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/
Dstrutil.cc457 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/
Dxhtml1.sax225 ... unescaped script , 24)
/external/libxml2/os400/libxmlrpg/
Duri.rpgle21 * Note: query is a deprecated field which is incorrectly unescaped.
/external/mksh/src/
Dedit.c2760 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/
Dtest_codecs.py2186 unescaped = b"space tab eol\n"
2187 self.assertEqual(codecs.decode(unescaped, "quopri-codec"), unescaped)
/external/python/cpython2/Doc/reference/
Dlexical_analysis.rst466 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/
Dregex.rst621 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/
Dru.po1342 #~ msgid "unescaped newline in constant"
Dtr.po1278 #~ msgid "unescaped newline in constant"
Dde.po1314 #~ msgid "unescaped newline in constant"
Dhr.po1324 #~ msgid "unescaped newline in constant"
/external/python/cpython2/Doc/
Dglossary.rst707 of reasons. They allow you to include unescaped single and double

12