• Home
  • Raw
  • Download

Lines Matching refs:quote_char

137         char quote_char = GetArgumentQuoteCharAtIndex(i);  in GetQuotedCommandString()  local
138 if (quote_char) in GetQuotedCommandString()
140 command.append (1, quote_char); in GetQuotedCommandString()
142 command.append (1, quote_char); in GetQuotedCommandString()
200 char quote_char = '\0'; in SetCommandString() local
231 if (quote_char == '\0') in SetCommandString()
251 if (quote_char) in SetCommandString()
257 if (quote_char == arg_end[0]) in SetCommandString()
266 quote_char = '\0'; // Note that we are no longer inside quotes in SetCommandString()
287 quote_char = arg_end[0]; in SetCommandString()
290 first_quote_char = quote_char; in SetCommandString()
297 const char *end_quote = ::strchr (arg_piece_start, quote_char); in SetCommandString()
302 end_quote = ::strchr (end_quote + 1, quote_char); in SetCommandString()
322 quote_char = '\0'; in SetCommandString()
336 if (quote_char) in SetCommandString()
471 Args::Unshift (const char *arg_cstr, char quote_char) in Unshift() argument
475 m_args_quote_char.insert(m_args_quote_char.begin(), quote_char); in Unshift()
498 Args::AppendArgument (const char *arg_cstr, char quote_char) in AppendArgument() argument
500 return InsertArgumentAtIndex (GetArgumentCount(), arg_cstr, quote_char); in AppendArgument()
504 Args::InsertArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char) in InsertArgumentAtIndex() argument
519 m_args_quote_char[idx] = quote_char; in InsertArgumentAtIndex()
522 m_args_quote_char.insert(m_args_quote_char.begin() + idx, quote_char); in InsertArgumentAtIndex()
529 Args::ReplaceArgumentAtIndex (size_t idx, const char *arg_cstr, char quote_char) in ReplaceArgumentAtIndex() argument
546 m_args_quote_char[idx] = quote_char; in ReplaceArgumentAtIndex()