Home
last modified time | relevance | path

Searched refs:escaped (Results 1 - 25 of 103) sorted by relevance

12345

/third_party/curl/src/
H A Dtool_setopt.c212 struct curlx_dynbuf escaped; in c_escape() local
214 curlx_dyn_init(&escaped, 4 * MAX_STRING_LENGTH_OUTPUT + 3); in c_escape()
225 result = curlx_dyn_addn(&escaped, STRCONST("")); in c_escape()
236 result = curlx_dyn_addn(&escaped, str, s - str); in c_escape()
241 result = curlx_dyn_addn(&escaped, to + 2 * (p - from), 2); in c_escape()
243 result = curlx_dyn_addf(&escaped, in c_escape()
253 result = curlx_dyn_addn(&escaped, str, s - str); in c_escape()
256 (void) !curlx_dyn_addn(&escaped, "...", cutoff); in c_escape()
258 return curlx_dyn_ptr(&escaped); in c_escape()
347 char *escaped in libcurl_generate_slist() local
383 char *escaped = NULL; libcurl_generate_mime_part() local
564 char *escaped = NULL; tool_setopt() local
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Descaping_test.cc33 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()
86 // Check that all possible two character strings can be escaped the in TEST()
94 std::string escaped = absl::CHexEscape(s); TEST() local
139 std::string escaped = absl::CEscape(val.unescaped); TEST() local
143 std::string escaped = absl::CHexEscape(val.unescaped); TEST() local
147 std::string escaped = absl::Utf8SafeCEscape(val.unescaped); TEST() local
151 std::string escaped = absl::Utf8SafeCHexEscape(val.unescaped); TEST() local
625 std::string escaped; TEST() local
[all...]
H A Descaping_benchmark.cc48 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/libabigail/src/
H A Dabg-libxml-utils.cc186 //// @param escaped the output string where to write the resulting
187 //// string that contains the pre-defined characters escaped as
191 std::string& escaped) in escape_xml_string()
197 escaped += "<"; in escape_xml_string()
200 escaped += ">"; in escape_xml_string()
203 escaped += "&"; in escape_xml_string()
206 escaped += "'"; in escape_xml_string()
209 escaped += """; in escape_xml_string()
212 escaped += *i; in escape_xml_string()
228 //// characters escaped a
190 escape_xml_string(const std::string& str, std::string& escaped) escape_xml_string() argument
248 escape_xml_comment(const std::string& str, std::string& escaped) escape_xml_comment() argument
291 unescape_xml_string(const std::string& str, std::string& escaped) unescape_xml_string() argument
379 unescape_xml_comment(const std::string& str, std::string& escaped) unescape_xml_comment() argument
[all...]
H A Dabg-ini.cc898 /// @param escaped This is an output parameter. It's set to true by
899 /// this function if it escaped the peeked character. Otherwise,
904 peek(bool& escaped) in peek() argument
909 escaped = false; in peek()
914 escaped = true; in peek()
931 bool escaped = false; in peek() local
932 return peek(escaped); in peek()
937 /// This function knows how to handles escaped characters from the
940 /// @param do_handle_escape if yes, this function handles escaped
1012 bool escaped in handle_escape() local
1376 bool escaped = false; read_string() local
[all...]
/third_party/node/lib/internal/readline/
H A Dutils.js90 let escaped = false;
100 escaped = true;
108 if (escaped && (ch === 'O' || ch === '[')) {
330 key.meta = escaped;
334 key.meta = escaped;
338 key.meta = escaped;
342 key.meta = escaped;
346 key.meta = escaped;
349 key.meta = escaped;
350 } else if (!escaped
[all...]
/third_party/protobuf/python/google/protobuf/internal/
H A Dtext_encoding_test.py59 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/mesa3d/src/util/
H A Dvl_rbsp.h45 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()
104 /* handle the already escaped bits */ 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/pulseaudio/src/modules/jack/
H A Dmodule-jackdbus-detect.c148 char *escaped; in proplist_to_arg() local
156 escaped = pa_escape(v, "\"'"); in proplist_to_arg()
157 pa_strbuf_puts(buf, escaped); in proplist_to_arg()
158 pa_xfree(escaped); in proplist_to_arg()
180 char *escaped; in ensure_ports_started() local
190 escaped = pa_escape(u->mod_args[i].name, "'"); in ensure_ports_started()
191 pa_strbuf_printf(args_buf, " %s_name='%s'", modtypes[i], escaped); in ensure_ports_started()
192 pa_xfree(escaped); in ensure_ports_started()
195 escaped = proplist_to_arg(u->mod_args[i].proplist); in ensure_ports_started()
196 pa_strbuf_printf(args_buf, " %s_properties='%s'", modtypes[i], escaped); in ensure_ports_started()
[all...]
/third_party/libwebsockets/lib/core/
H A Dlibwebsockets.c472 * quote, return until closing quote, handling escaped quotes. in lws_json_simple_find()
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, cons argument
685 lws_urldecode(char *string, const char *escaped, int len) lws_urldecode() argument
[all...]
/third_party/libabigail/include/
H A Dabg-libxml-utils.h86 std::string& escaped);
93 std::string& escaped);
100 std::string& escaped);
107 std::string& escaped);
/third_party/jerryscript/tests/unit-ext/
H A Dtest-ext-handle-scope-escape.c46 // If leaves `escaped` uninitialized, there will be a style error on linux thrown by compiler in create_object()
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()
H A Dtest-ext-handle-scope-handle-prelist-escape.c54 // If leaves `escaped` uninitialized, there will be a style error on linux thrown by compiler in create_object()
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()
H A Dtest-ext-handle-scope-handle-prelist.c54 // If leaves `escaped` uninitialized, there will be a style error on linux thrown by compiler in create_object()
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()
H A Dtest-ext-handle-scope-remove.c46 // If leaves `escaped` uninitialized, there will be a style error on linux thrown by compiler in create_object()
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()
H A Dtest-ext-handle-scope-nested.c59 // If leaves `escaped` uninitialized, there will be a style error on linux thrown by compiler in create_object_nested()
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/protobuf/src/google/protobuf/util/internal/
H A Djson_escaping.cc50 // kCommonEscapes[ch] is the escaped string of ch, if escaping is needed;
231 // escaped form. The returned StringPiece either points to statically
273 // does not need to be escaped, but force_output is true, then render
308 StringPiece escaped; in Escape() local
314 // i) a code point that needs to be escaped; or in Escape()
321 escaped = EscapeCodePoint(cp, buffer, cp_was_split); in Escape()
322 if (!escaped.empty()) break; // case i or ii in Escape()
326 // First copy the un-escaped prefix, if any, to the output ByteSink. in Escape()
333 } else if (num_left == 0 && !escaped.empty()) { in Escape()
334 // Case i or ii: Append the escaped cod in Escape()
[all...]
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/
H A Dattribute.js18 var warnOfDeprecatedValueAssignment = deprecate(function () {}, "Assigning an attribute a value containing characters that might need to be escaped is deprecated. " + "Call attribute.setValue() instead.");
95 * * `null` - the value will be unquoted and characters will be escaped as necessary.
96 * * `'` - the value will be quoted with a single quote and single quotes are escaped.
97 * * `"` - the value will be quoted with a double quote and double quotes are escaped.
111 var escaped = (0, _cssesc["default"])(this._value, cssescopts);
112 return escaped;
121 * be interpreted as part of the value and escaped accordingly.
149 var escaped = (0, _cssesc["default"])(v, {
152 if (escaped === v) {
161 if (quoteValue.length < escaped
[all...]
H A DclassName.js34 var escaped = (0, _cssesc["default"])(v, {
37 if (escaped !== v) {
39 this.raws.value = escaped;
H A Dnamespace.js42 var escaped = (0, _cssesc["default"])(namespace, {
46 if (escaped !== namespace) {
48 this.raws.namespace = escaped;
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/
H A Dtokenize.js87 var code, content, endColumn, endLine, escaped, escapePos, last, lines, next, nextLine, nextOffset, quote, tokenType;
163 escaped = false;
171 escaped = !escaped;
173 } while (escaped);
/third_party/rust/crates/nom/tests/
H A Descaped.rs1 use nom::bytes::complete::escaped;
7 escaped(digit1, '\\', one_of("\"n\\"))(s) in esc()
/third_party/skia/third_party/externals/tint/tools/src/match/
H A Dmatch.go40 // escaped. So:
64 escaped := regexp.QuoteMeta(subbed)
66 regex := "^" + escaped + "$"
/third_party/json/tests/src/
H A Dunit-convenience.cpp97 void check_escaped(const char* original, const char* escaped = "", bool ensure_ascii = false);
98 void check_escaped(const char* original, const char* escaped, const bool ensure_ascii) in check_escaped() argument
103 CHECK(ss.str() == escaped); in check_escaped()
/third_party/node/lib/internal/repl/
H A Dutils.js158 let escaped = null;
208 if (escaped === null && key.meta) {
209 escaped = repl.line;
213 escaped !== repl.line &&
220 if (escaped !== repl.line) {
221 escaped = null;
460 escaped !== repl.line) {

Completed in 11 milliseconds

12345