Home
last modified time | relevance | path

Searched refs:quote_string (Results 1 – 2 of 2) sorted by relevance

/external/bison/lib/
Dquotearg.c251 char const *quote_string = 0; in quotearg_buffer_restyled() local
276 quote_string = "\""; in quotearg_buffer_restyled()
316 for (quote_string = left_quote; *quote_string; quote_string++) in quotearg_buffer_restyled()
317 STORE (*quote_string); in quotearg_buffer_restyled()
319 quote_string = right_quote; in quotearg_buffer_restyled()
320 quote_string_len = strlen (quote_string); in quotearg_buffer_restyled()
331 quote_string = "'"; in quotearg_buffer_restyled()
352 && memcmp (arg + i, quote_string, quote_string_len) == 0) in quotearg_buffer_restyled()
641 if (quote_string && !elide_outer_quotes) in quotearg_buffer_restyled()
642 for (; *quote_string; quote_string++) in quotearg_buffer_restyled()
[all …]
/external/chromium_org/tools/gn/
Dvalue.cc125 std::string Value::ToString(bool quote_string) const { in ToString()
134 if (quote_string) { in ToString()