Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:quote_char

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