Lines Matching refs:quote
159 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote) : quote(quote) { in ArgEntry() argument
188 m_entries.emplace_back(entry.ref(), entry.quote); in operator =()
217 char quote = m_entries[i].quote; in GetCommandString() local
218 if (quote != '\0') in GetCommandString()
219 command += quote; in GetCommandString()
221 if (quote != '\0') in GetCommandString()
222 command += quote; in GetCommandString()
235 if (m_entries[i].quote) { in GetQuotedCommandString()
236 command += m_entries[i].quote; in GetQuotedCommandString()
238 command += m_entries[i].quote; in GetQuotedCommandString()
253 char quote; in SetCommandString() local
255 std::tie(arg, quote, command) = ParseSingleArgument(command); in SetCommandString()
256 m_entries.emplace_back(arg, quote); in SetCommandString()
302 m_entries.emplace_back(entry.ref(), entry.quote); in AppendArguments()
364 char quote = in SetArguments() local
369 m_entries[i] = ArgEntry(args[i], quote); in SetArguments()
640 char quote; in SetFromString() local
655 std::tie(arg, quote, arg_string) = ParseSingleArgument(arg_string); in SetFromString()
659 Args::ArgEntry entry(arg, quote); in SetFromString()