HomeSort by relevance Sort by last modified time
    Searched full:used_quotes (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/tools/gn/
escape_unittest.cc 19 bool used_quotes = false; local
21 EXPECT_EQ("foo bar", EscapeString("foo bar", shell_options, &used_quotes));
22 EXPECT_TRUE(used_quotes);
25 used_quotes = false;
28 EscapeString("foo bar", shell_options, &used_quotes));
29 EXPECT_TRUE(used_quotes);
32 used_quotes = false;
34 EscapeString("foo bar", ninja_shell_options, &used_quotes));
35 EXPECT_TRUE(used_quotes);
38 used_quotes = false
    [all...]
escape.cc 16 bool used_quotes = false; local
38 if (!used_quotes) {
39 used_quotes = true;
66 if (used_quotes)

Completed in 50 milliseconds