Home
last modified time | relevance | path

Searched refs:escaped_string (Results 1 – 9 of 9) sorted by relevance

/third_party/glib/fuzzing/
Dfuzz_uri_escape.c9 gchar *escaped_string = NULL; in test_bytes() local
22 escaped_string = g_uri_escape_bytes (g_bytes_get_data (unescaped_bytes, NULL), in test_bytes()
27 if (escaped_string == NULL) in test_bytes()
30 g_free (escaped_string); in test_bytes()
38 gchar *escaped_string = NULL; in test_string() local
44 escaped_string = g_uri_escape_string (unescaped_string, NULL, TRUE); in test_string()
47 if (escaped_string == NULL) in test_string()
50 g_free (escaped_string); in test_string()
/third_party/boost/libs/spirit/example/karma/
Descaped_string.cpp17 struct escaped_string struct
20 escaped_string() in escaped_string() function
21 : escaped_string::base_type(esc_str) in escaped_string()
52 client::escaped_string<sink_type> g; in main() argument
DJamfile35 exe karma_escaped_string : escaped_string.cpp ;
/third_party/glib/gio/
Dgdummyfile.c66 static char * unescape_string (const gchar *escaped_string,
440 unescape_string (const gchar *escaped_string, in unescape_string() argument
448 if (escaped_string == NULL) in unescape_string()
452 escaped_string_end = escaped_string + strlen (escaped_string); in unescape_string()
454 result = g_malloc (escaped_string_end - escaped_string + 1); in unescape_string()
457 for (in = escaped_string; in < escaped_string_end; in++) in unescape_string()
485 g_warn_if_fail ((gsize) (out - result) <= strlen (escaped_string)); in unescape_string()
/third_party/glib/glib/
Dguri.h388 char * g_uri_unescape_string (const char *escaped_string,
391 char * g_uri_unescape_segment (const char *escaped_string,
406 GBytes * g_uri_unescape_bytes (const char *escaped_string,
Dguri.c2582 g_uri_unescape_segment (const gchar *escaped_string, in g_uri_unescape_segment() argument
2590 if (!escaped_string) in g_uri_unescape_segment()
2594 length = escaped_string_end - escaped_string; in g_uri_unescape_segment()
2596 length = strlen (escaped_string); in g_uri_unescape_segment()
2600 escaped_string, length, in g_uri_unescape_segment()
2636 g_uri_unescape_string (const gchar *escaped_string, in g_uri_unescape_string() argument
2639 return g_uri_unescape_segment (escaped_string, NULL, illegal_characters); in g_uri_unescape_string()
2706 g_uri_unescape_bytes (const gchar *escaped_string, in g_uri_unescape_bytes() argument
2714 g_return_val_if_fail (escaped_string != NULL, NULL); in g_uri_unescape_bytes()
2718 length = strlen (escaped_string); in g_uri_unescape_bytes()
[all …]
/third_party/python/Lib/
Dast.py1098 escaped_string = "".join(map(escape_char, string))
1100 if "\n" in escaped_string:
1102 possible_quotes = [q for q in possible_quotes if q not in escaped_string]
1110 if escaped_string:
1112 possible_quotes.sort(key=lambda q: q[0] == escaped_string[-1])
1115 if possible_quotes[0][0] == escaped_string[-1]:
1117 escaped_string = escaped_string[:-1] + "\\" + escaped_string[-1]
1118 return escaped_string, possible_quotes
/third_party/boost/libs/beast/test/beast/http/
Dmessage_fuzz.hpp25 escaped_string(string_view s) in escaped_string() function
/third_party/gstreamer/gstreamer/gst/
Dgsturi.c296 unescape_string (const gchar * escaped_string, const gchar * illegal_characters) in unescape_string() argument
302 if (escaped_string == NULL) { in unescape_string()
306 result = g_malloc (strlen (escaped_string) + 1); in unescape_string()
309 for (in = escaped_string; *in != '\0'; in++) { in unescape_string()
327 g_assert ((gsize) (out - result) <= strlen (escaped_string)); in unescape_string()