Home
last modified time | relevance | path

Searched refs:in_quotes (Results 1 – 4 of 4) sorted by relevance

/third_party/gstreamer/gstreamer/gst/parse/
Dtypes.h77 gboolean in_quotes; in gst_parse_unescape() local
82 in_quotes = FALSE; in gst_parse_unescape()
87 if (*walk == '\\' && !in_quotes) { in gst_parse_unescape()
92 } else if (*walk == '"' && (!in_quotes || *(walk - 1) != '\\')) { in gst_parse_unescape()
95 in_quotes = !in_quotes; in gst_parse_unescape()
/third_party/gstreamer/gstreamer/gst/
Dgstparse.c189 gboolean in_quotes; in _gst_parse_escape() local
195 in_quotes = FALSE; in _gst_parse_escape()
198 if (*str == '"' && (!in_quotes || *(str - 1) != '\\')) in _gst_parse_escape()
199 in_quotes = !in_quotes; in _gst_parse_escape()
201 if (*str == ' ' && !in_quotes) in _gst_parse_escape()
/third_party/boost/boost/process/detail/posix/
Dcmd.hpp30 bool in_quotes = false; in build_cmd() local
35 in_quotes = !in_quotes; in build_cmd()
37 if (!in_quotes && (*itr == space_sign<Char>())) in build_cmd()
/third_party/ffmpeg/libavformat/
Dsubtitles.c342 int in_quotes = 0; in ff_smil_get_attr_ptr() local
347 if (!in_quotes && av_isspace(*s)) in ff_smil_get_attr_ptr()
349 in_quotes ^= *s == '"'; // XXX: support escaping? in ff_smil_get_attr_ptr()