Home
last modified time | relevance | path

Searched refs:needs_quoting (Results 1 – 3 of 3) sorted by relevance

/third_party/gn/src/gn/
Descape_unittest.cc32 bool needs_quoting = false; in TEST() local
33 EXPECT_EQ("\"foo\\$ bar\"", EscapeString("foo\\ bar", opts, &needs_quoting)); in TEST()
34 EXPECT_TRUE(needs_quoting); in TEST()
37 needs_quoting = false; in TEST()
39 EXPECT_EQ("foo\\$ bar", EscapeString("foo\\ bar", opts, &needs_quoting)); in TEST()
40 EXPECT_TRUE(needs_quoting); in TEST()
/third_party/ffmpeg/libavformat/
Dsegment.c130 int needs_quoting = !!str[strcspn(str, "\",\n\r")]; in print_csv_escaped_str() local
132 if (needs_quoting) in print_csv_escaped_str()
140 if (needs_quoting) in print_csv_escaped_str()
/third_party/ffmpeg/fftools/
Dffprobe.c1052 int needs_quoting = !!src[strcspn(src, meta_chars)]; in csv_escape_str() local
1054 if (needs_quoting) in csv_escape_str()
1062 if (needs_quoting) in csv_escape_str()