OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:needs_quoting
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/tools/gn/
escape_unittest.cc
24
bool
needs_quoting
= false;
local
25
EXPECT_EQ("\"foo\\$ bar\"", EscapeString("foo\\ bar", opts, &
needs_quoting
));
26
EXPECT_TRUE(
needs_quoting
);
29
needs_quoting
= false;
31
EXPECT_EQ("foo\\$ bar", EscapeString("foo\\ bar", opts, &
needs_quoting
));
32
EXPECT_TRUE(
needs_quoting
);
/system/netd/server/
ndc.c
91
bool
needs_quoting
= strchr(argv[i], ' ');
local
92
const char *format =
needs_quoting
? "%s\"%s\"%s" : "%s%s%s";
Completed in 131 milliseconds