Home
last modified time | relevance | path

Searched refs:g_strsplit_set (Results 1 – 15 of 15) sorted by relevance

/third_party/glib/glib/tests/
Dstrfuncs.c1398 string = g_strsplit_set (NULL, ",/", 0); in test_strsplit_set()
1404 string = g_strsplit_set ("", NULL, 0); in test_strsplit_set()
1409 strv_check (g_strsplit_set ("", ",/", 0), NULL); in test_strsplit_set()
1410 strv_check (g_strsplit_set (":def/ghi:", ":/", -1), "", "def", "ghi", "", NULL); in test_strsplit_set()
1411 strv_check (g_strsplit_set ("abc:def/ghi", ":/", -1), "abc", "def", "ghi", NULL); in test_strsplit_set()
1412 strv_check (g_strsplit_set (",;,;,;,;", ",;", -1), "", "", "", "", "", "", "", "", "", NULL); in test_strsplit_set()
1413 strv_check (g_strsplit_set (",,abc.def", ".,", -1), "", "", "abc", "def", NULL); in test_strsplit_set()
1415 strv_check (g_strsplit_set (",x.y", ",.", 0), "", "x", "y", NULL); in test_strsplit_set()
1416 strv_check (g_strsplit_set (".x,y,", ",.", 0), "", "x", "y", "", NULL); in test_strsplit_set()
1417 strv_check (g_strsplit_set ("x,y.z", ",.", 0), "x", "y", "z", NULL); in test_strsplit_set()
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgsttracerutils.c95 gchar **t = g_strsplit_set (env, ";", 0); in _priv_gst_tracing_init()
Dgstplugin.c1503 components = g_strsplit_set (*evars, "/\\", 2); in gst_plugin_ext_dep_extract_env_vars_paths()
1923 a_evars = g_strsplit_set (env_vars, ":;,", -1); in gst_plugin_add_dependency_simple()
1925 a_paths = g_strsplit_set (paths, ":;,", -1); in gst_plugin_add_dependency_simple()
1927 a_names = g_strsplit_set (names, ",", -1); in gst_plugin_add_dependency_simple()
/third_party/gettext/libtextstyle/gnulib-local/lib/glib/
Dgstrfuncs.in.h263 gchar ** g_strsplit_set (const gchar *string,
Dgstrfuncs.c2369 g_strsplit_set (const gchar *string,
/third_party/glib/glib/
Dgstrfuncs.h287 gchar ** g_strsplit_set (const gchar *string,
Dgstrfuncs.c2464 g_strsplit_set (const gchar *string, in g_strsplit_set() function
/third_party/libsoup/libsoup/
Dsoup-websocket.c226 client_protocols = g_strsplit_set (client_protocols_str, ", ", -1); in choose_subprotocol()
/third_party/glib/gio/tests/
Ddesktop-app-info.c477 result_words = g_strsplit_set (result, " \n", 0); in assert_strings_equivalent()
/third_party/gstreamer/gstplugins_bad/ext/ladspa/
Dgstladspautils.c297 namev = g_strsplit_set (desc->PortNames[portnum], "[]()", 0); in gst_ladspa_object_class_get_param_name()
/third_party/gstreamer/gstplugins_bad/ext/curl/
Dgstcurlsmtpsink.c709 tmp_list = g_strsplit_set (sink->mail_rcpt, MAIL_RCPT_DELIMITER, -1); in gst_curl_smtp_sink_set_transfer_options_unlocked()
/third_party/gstreamer/gstplugins_base/gst/subparse/
Dgstsubparse.c924 gchar **splitted_settings = g_strsplit_set (settings, " \t", -1); in parse_webvtt_cue_settings()
/third_party/glib/docs/reference/glib/
Dglib-sections.txt1815 g_strsplit_set
/third_party/gstreamer/gstplugins_bad/ext/dash/
Dgstmpdparser.c3309 tokens = g_strsplit_set (url_template, "$", -1); in gst_mpdparser_build_URL_from_template()
/third_party/glib/
DNEWS12905 * Add g_strsplit_set(). [Soeren]