HomeSort by relevance Sort by last modified time
    Searched refs:unescaped (Results 1 - 25 of 267) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/protobuf/python/google/protobuf/internal/
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))
  /prebuilts/go/darwin-x86/src/html/
escape_test.go 17 // The unescaped text.
18 unescaped string
92 unescaped := UnescapeString(tt.html)
93 if unescaped != tt.unescaped {
94 t.Errorf("TestUnescape %s: want %q, got %q", tt.desc, tt.unescaped, unescaped)
entity_test.go 15 // unescaped text is <= the length of escaped text.
  /prebuilts/go/linux-x86/src/html/
escape_test.go 17 // The unescaped text.
18 unescaped string
92 unescaped := UnescapeString(tt.html)
93 if unescaped != tt.unescaped {
94 t.Errorf("TestUnescape %s: want %q, got %q", tt.desc, tt.unescaped, unescaped)
entity_test.go 15 // unescaped text is <= the length of escaped text.
  /external/webrtc/webrtc/base/
base64_unittest.cc 343 std::string unescaped; local
344 EXPECT_TRUE(Base64::DecodeFromArray(src, szsrc, Base64::DO_LAX, &unescaped,
346 memcpy(dest, unescaped.data(), min(unescaped.size(), szdest));
347 return unescaped.size();
903 char unescaped[64 * 1024]; local
    [all...]
  /prebuilts/go/darwin-x86/src/mime/quotedprintable/
example_test.go 19 "Hello, Gophers! This symbol will be unescaped: =3D and this will be written in =\r\none line.",
27 // Hello, Gophers! This symbol will be unescaped: = and this will be written in one line. <nil>
reader.go 127 return n, fmt.Errorf("quotedprintable: invalid unescaped byte 0x%02x in body", b)
reader_test.go 39 {in: "foo\x00bar", want: "foo", err: "quotedprintable: invalid unescaped byte 0x00 in body"},
40 {in: "foo bar\xff", want: "foo bar", err: "quotedprintable: invalid unescaped byte 0xff in body"},
  /prebuilts/go/linux-x86/src/mime/quotedprintable/
example_test.go 19 "Hello, Gophers! This symbol will be unescaped: =3D and this will be written in =\r\none line.",
27 // Hello, Gophers! This symbol will be unescaped: = and this will be written in one line. <nil>
reader.go 127 return n, fmt.Errorf("quotedprintable: invalid unescaped byte 0x%02x in body", b)
reader_test.go 39 {in: "foo\x00bar", want: "foo", err: "quotedprintable: invalid unescaped byte 0x00 in body"},
40 {in: "foo bar\xff", want: "foo bar", err: "quotedprintable: invalid unescaped byte 0xff in body"},
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue15611.go 15 _ = '' // ERROR "empty character literal or unescaped ' in character literal"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue15611.go 15 _ = '' // ERROR "empty character literal or unescaped ' in character literal"
  /external/curl/lib/
ldap.c 871 char *unescaped; local
877 result = Curl_urldecode(conn->data, dn, 0, &unescaped, NULL, FALSE);
885 /* Convert the unescaped string to a tchar */
886 ludp->lud_dn = Curl_convert_UTF8_to_tchar(unescaped);
888 /* Free the unescaped string as we are done with it */
889 Curl_unicodefree(unescaped);
897 ludp->lud_dn = unescaped;
936 char *unescaped; local
942 result = Curl_urldecode(conn->data, attributes[i], 0, &unescaped, NULL,
953 /* Convert the unescaped string to a tchar *
1006 char *unescaped; local
    [all...]
  /external/tensorflow/tensorflow/core/framework/
op_gen_lib.cc 137 string unescaped; local
138 if (!str_util::CUnescape(escaped, &unescaped, nullptr)) {
144 // Find a string to mark the end that isn't in unescaped.
146 for (int s = 0; unescaped.find(end) != string::npos; ++s) {
151 strings::StrAppend(ml, up_to_colon, ": <<", end, "\n", unescaped, "\n", end);
225 // Add every line to unescaped until we see the "END" string.
226 string unescaped; local
235 unescaped.push_back('\n');
237 strings::StrAppend(&unescaped, line);
242 strings::StrAppend(&pbtxt, " \"", str_util::CEscape(unescaped), "\"", line
    [all...]
  /external/libxml2/
xmlIO.c 852 * Wrapper around xmlFileOpen_real that try it with an unescaped
859 char *unescaped; local
864 unescaped = xmlURIUnescapeString(filename, 0, NULL);
865 if (unescaped != NULL) {
866 retval = xmlFileOpen_real(unescaped);
867 xmlFree(unescaped);
1121 char *unescaped; local
1126 unescaped = xmlURIUnescapeString(filename, 0, NULL);
1127 if (unescaped != NULL) {
1128 retval = xmlGzfileOpen_real(unescaped);
1315 char *unescaped; local
2630 char *unescaped = NULL; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Message.java 619 final String[] unescaped = new String[escaped.length]; local
622 unescaped[i] = Html.fromHtml(escapeMore).toString();
624 return unescaped;
  /external/libmojo/build/
gn_helpers.py 128 """Given a string with GN escaping, returns the unescaped string.
  /external/skia/gn/
gn_helpers.py 128 """Given a string with GN escaping, returns the unescaped string.
  /external/skqp/gn/
gn_helpers.py 128 """Given a string with GN escaping, returns the unescaped string.
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 457 scoped_array<char> unescaped(new char[src.size() + 1]);
458 int len = UnescapeCEscapeSequences(src.c_str(), unescaped.get(), errors);
460 dest->assign(unescaped.get(), len);
465 scoped_array<char> unescaped(new char[src.size() + 1]);
466 int len = UnescapeCEscapeSequences(src.c_str(), unescaped.get(), NULL);
467 return string(unescaped.get(), len);
    [all...]
  /prebuilts/go/darwin-x86/src/strconv/
quote.go 235 // If set to a single quote, it permits the sequence \' and disallows unescaped '.
236 // If set to a double quote, it permits \" and disallows unescaped ".
237 // If set to zero, it does not permit either escape and allows both quote characters to appear unescaped.
  /prebuilts/go/linux-x86/src/strconv/
quote.go 235 // If set to a single quote, it permits the sequence \' and disallows unescaped '.
236 // If set to a double quote, it permits \" and disallows unescaped ".
237 // If set to zero, it does not permit either escape and allows both quote characters to appear unescaped.
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 372 String unescaped = unquoted.replace("\"", "\\\"").replace("\\`", "`"); local
373 return XmlEscapers.xmlAttributeEscaper().escape(unescaped);

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 91011