/third_party/curl/src/ |
D | tool_setopt.c | 237 char *escaped, *e; in c_escape() local 250 escaped = malloc(4 * (size_t)len + 1 + cutoff); in c_escape() 251 if(!escaped) in c_escape() 254 e = escaped; in c_escape() 287 return escaped; in c_escape() 417 char *escaped = NULL; in libcurl_generate_slist() local 427 Curl_safefree(escaped); in libcurl_generate_slist() 428 escaped = c_escape(slist->data, ZERO_TERMINATED); in libcurl_generate_slist() 429 if(!escaped) in libcurl_generate_slist() 432 *slistno, *slistno, escaped); in libcurl_generate_slist() [all …]
|
/third_party/abseil-cpp/absl/strings/ |
D | escaping_test.cc | 33 std::string escaped; member 56 std::string escaped; in TEST() local 59 escaped = absl::CEscape(original); in TEST() 62 escaped = absl::CHexEscape(original); in TEST() 65 escaped = absl::Utf8SafeCEscape(original); in TEST() 68 escaped = absl::Utf8SafeCHexEscape(original); in TEST() 72 EXPECT_TRUE(absl::CUnescape(escaped, &unescaped_str)); in TEST() 77 EXPECT_TRUE(absl::CUnescape(escaped, &unescaped_str, &error)); in TEST() 81 std::string s = escaped; in TEST() 94 std::string escaped = absl::CHexEscape(s); in TEST() local [all …]
|
D | escaping_benchmark.cc | 48 std::string escaped; in BM_WebSafeBase64Escape_string() local 50 absl::WebSafeBase64Escape(raw, &escaped); in BM_WebSafeBase64Escape_string() 57 absl::WebSafeBase64Unescape(escaped, &round_trip); in BM_WebSafeBase64Escape_string()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | escaping_test.cc | 33 std::string escaped; member 56 std::string escaped; in TEST() local 59 escaped = absl::CEscape(original); in TEST() 62 escaped = absl::CHexEscape(original); in TEST() 65 escaped = absl::Utf8SafeCEscape(original); in TEST() 68 escaped = absl::Utf8SafeCHexEscape(original); in TEST() 72 EXPECT_TRUE(absl::CUnescape(escaped, &unescaped_str)); in TEST() 77 EXPECT_TRUE(absl::CUnescape(escaped, &unescaped_str, &error)); in TEST() 81 std::string s = escaped; in TEST() 94 std::string escaped = absl::CHexEscape(s); in TEST() local [all …]
|
D | escaping_benchmark.cc | 48 std::string escaped; in BM_WebSafeBase64Escape_string() local 50 absl::WebSafeBase64Escape(raw, &escaped); in BM_WebSafeBase64Escape_string() 57 absl::WebSafeBase64Unescape(escaped, &round_trip); in BM_WebSafeBase64Escape_string()
|
/third_party/node/lib/internal/readline/ |
D | utils.js | 91 let escaped = false; 101 escaped = true; 109 if (escaped && (ch === 'O' || ch === '[')) { 317 key.meta = escaped; 321 key.meta = escaped; 325 key.meta = escaped; 329 key.meta = escaped; 333 key.meta = escaped; 336 key.meta = escaped; 337 } else if (!escaped && ch <= '\x1a') { [all …]
|
/third_party/re2/re2/testing/ |
D | exhaustive2_test.cc | 27 std::vector<std::string> escaped = alphabet; in TEST() local 28 for (size_t i = 0; i < escaped.size(); i++) in TEST() 29 escaped[i] = "\\" + escaped[i]; in TEST() 30 ExhaustiveTest(1, 1, escaped, RegexpGenerator::EgrepOps(), in TEST()
|
/third_party/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_rbsp.h | 45 unsigned escaped; member 80 rbsp->escaped = (valid >= 16) ? 16 : ((valid >= 8) ? 8 : 0); in vl_rbsp_init() 102 assert(valid >= rbsp->escaped); in vl_rbsp_fillbits() 105 valid -= rbsp->escaped; in vl_rbsp_fillbits() 108 rbsp->escaped = 16; in vl_rbsp_fillbits() 113 rbsp->escaped = bits - i; in vl_rbsp_fillbits()
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | text_encoding_test.py | 59 for escaped, escaped_utf8, unescaped in TEST_VALUES: 60 self.assertEqual(escaped, 66 for escaped, escaped_utf8, unescaped in TEST_VALUES: 67 self.assertEqual(unescaped, text_encoding.CUnescape(escaped))
|
/third_party/libwebsockets/lib/core/ |
D | libwebsockets.c | 514 lws_sql_purify(char *escaped, const char *string, size_t len) in lws_sql_purify() argument 517 char *q = escaped; in lws_sql_purify() 530 return escaped; in lws_sql_purify() 548 lws_json_purify(char *escaped, const char *string, int len, int *in_used) in lws_json_purify() argument 551 char *q = escaped; in lws_json_purify() 554 escaped[0] = '\0'; in lws_json_purify() 555 return escaped; in lws_json_purify() 604 return escaped; in lws_json_purify() 655 lws_urlencode(char *escaped, const char *string, int len) in lws_urlencode() argument 658 char *q = escaped; in lws_urlencode() [all …]
|
/third_party/protobuf/src/google/protobuf/util/internal/ |
D | json_escaping.cc | 308 StringPiece escaped; in Escape() local 321 escaped = EscapeCodePoint(cp, buffer, cp_was_split); in Escape() 322 if (!escaped.empty()) break; // case i or ii in Escape() 333 } else if (num_left == 0 && !escaped.empty()) { in Escape() 335 output->Append(escaped.data(), escaped.size()); in Escape()
|
/third_party/gstreamer/gstplugins_bad/ext/kate/ |
D | gstkatedec.c | 247 gchar *escaped; in gst_kate_dec_handle_kate_event() local 254 escaped = g_strdup (ev->text); in gst_kate_dec_handle_kate_event() 255 if (escaped) { in gst_kate_dec_handle_kate_event() 256 kate_text_remove_markup (ev->text_encoding, escaped, &len0); in gst_kate_dec_handle_kate_event() 262 escaped = g_strdup (ev->text); in gst_kate_dec_handle_kate_event() 265 escaped = g_strdup (ev->text); in gst_kate_dec_handle_kate_event() 269 if (G_LIKELY (escaped)) { in gst_kate_dec_handle_kate_event() 270 len = strlen (escaped); in gst_kate_dec_handle_kate_event() 272 GST_DEBUG_OBJECT (kd, "kate event: %s, escaped %s", ev->text, escaped); in gst_kate_dec_handle_kate_event() 289 gst_buffer_fill (buffer, 0, escaped, len + 1); in gst_kate_dec_handle_kate_event() [all …]
|
/third_party/boost/libs/spirit/example/support/utree/ |
D | utf8_parser.hpp | 96 escaped; member 118 escaped in parser() 127 > *(escaped(_val) | (~char_('"')) [_val += _1]) in parser() 130 escaped.name("escaped_string"); in parser()
|
/third_party/glib/gio/tests/ |
D | httpd.c | 39 char *line, *escaped, *tmp, *query, *unescaped, *path, *version; in handler() local 66 escaped = line + 4; /* Skip "GET " */ in handler() 69 tmp = strchr (escaped, ' '); in handler() 84 query = strchr (escaped, '?'); in handler() 88 unescaped = g_uri_unescape_string (escaped, NULL); in handler()
|
/third_party/jerryscript/tests/unit-ext/ |
D | test-ext-handle-scope-escape.c | 47 jerry_value_t escaped = 0; in create_object() local 48 jerryx_escape_handle (scope, obj, &escaped); in create_object() 53 return escaped; in create_object()
|
D | test-ext-handle-scope-remove.c | 47 jerry_value_t escaped = 0; in create_object() local 48 jerryx_remove_handle (scope, obj, &escaped); in create_object() 53 return escaped; in create_object()
|
D | test-ext-handle-scope-handle-prelist-escape.c | 55 jerry_value_t escaped = 0; in create_object() local 56 jerryx_escape_handle (scope, obj, &escaped); in create_object() 60 return escaped; in create_object()
|
D | test-ext-handle-scope-handle-prelist.c | 55 jerry_value_t escaped = 0; in create_object() local 56 jerryx_escape_handle (scope, obj, &escaped); in create_object() 60 return escaped; in create_object()
|
D | test-ext-handle-scope-nested.c | 60 jerry_value_t escaped = 0; in create_object_nested() local 61 jerryx_handle_scope_status status = jerryx_escape_handle (scope, obj, &escaped); in create_object_nested() 67 return escaped; in create_object_nested()
|
/third_party/libsoup/examples/ |
D | simple-httpd.c | 29 char *escaped; in get_directory_listing() local 42 escaped = g_markup_escape_text (d_name, -1); in get_directory_listing() 43 g_ptr_array_add (entries, escaped); in get_directory_listing() 51 escaped = g_markup_escape_text (strchr (path, '/'), -1); in get_directory_listing() 52 g_string_append_printf (listing, "<head><title>Index of %s</title></head>\r\n", escaped); in get_directory_listing() 53 g_string_append_printf (listing, "<body><h1>Index of %s</h1>\r\n<p>\r\n", escaped); in get_directory_listing() 54 g_free (escaped); in get_directory_listing()
|
/third_party/gstreamer/gstreamer/gst/ |
D | gsturi.c | 512 char *escaped, *proto_lowercase; in gst_uri_construct() local 519 escaped = escape_string_internal (location, UNSAFE_PATH); in gst_uri_construct() 520 retval = g_strdup_printf ("%s://%s", proto_lowercase, escaped); in gst_uri_construct() 521 g_free (escaped); in gst_uri_construct() 2004 gchar *escaped; in gst_uri_to_string() local 2018 escaped = _gst_uri_escape_userinfo (uri->userinfo); in gst_uri_to_string() 2019 g_string_append_printf (uri_str, "%s@", escaped); in gst_uri_to_string() 2020 g_free (escaped); in gst_uri_to_string() 2025 escaped = _gst_uri_escape_host_colon (uri->host); in gst_uri_to_string() 2026 g_string_append_printf (uri_str, "[%s]", escaped); in gst_uri_to_string() [all …]
|
/third_party/glib/gio/ |
D | gio-tool-info.c | 124 char *escaped, *uri; in show_info() local 144 escaped = escape_string (name); in show_info() 145 g_print (_("name: %s\n"), escaped); in show_info() 146 g_free (escaped); in show_info() 192 escaped = g_strescape (root, NULL); in show_info() 193 root_string = g_strconcat ("[", escaped, "]", NULL); in show_info() 194 g_free (escaped); in show_info()
|
/third_party/gettext/gettext-tools/src/ |
D | write-desktop.c | 89 char *escaped; in msgfmt_desktop_handle_pair() local 91 escaped = desktop_escape_string (mp->msgstr, is_list); in msgfmt_desktop_handle_pair() 94 key, operand->language, escaped); in msgfmt_desktop_handle_pair() 95 free (escaped); in msgfmt_desktop_handle_pair()
|
/third_party/json/test/src/ |
D | unit-convenience.cpp | 41 void check_escaped(const char* original, const char* escaped = "", const bool ensure_ascii = false); 42 void check_escaped(const char* original, const char* escaped, const bool ensure_ascii) in check_escaped() argument 47 CHECK(ss.str() == escaped); in check_escaped()
|
/third_party/openssl/doc/man3/ |
D | ASN1_STRING_print_ex.pod | 43 Various characters can be escaped. If B<ASN1_STRFLGS_ESC_2253> is set the characters 44 determined by RFC2253 are escaped. If B<ASN1_STRFLGS_ESC_CTRL> is set control 45 characters are escaped. If B<ASN1_STRFLGS_ESC_MSB> is set characters with the 46 MSB set are escaped: this option should B<not> be used if the terminal correctly 51 If the character being escaped is a 16 bit character then the form "\UXXXX" is used 56 Printable characters are normally escaped using the backslash '\' character. If
|