Lines Matching refs:quote
160 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote) : quote(quote) { in ArgEntry() argument
189 m_entries.emplace_back(entry.ref(), entry.quote); in operator =()
231 if (m_entries[i].quote) { in GetQuotedCommandString()
232 command += m_entries[i].quote; in GetQuotedCommandString()
234 command += m_entries[i].quote; in GetQuotedCommandString()
249 char quote; in SetCommandString() local
251 std::tie(arg, quote, command) = ParseSingleArgument(command); in SetCommandString()
252 m_entries.emplace_back(arg, quote); in SetCommandString()
298 m_entries.emplace_back(entry.ref(), entry.quote); in AppendArguments()
360 char quote = in SetArguments() local
365 m_entries[i] = ArgEntry(args[i], quote); in SetArguments()
634 char quote; in SetFromString() local
649 std::tie(arg, quote, arg_string) = ParseSingleArgument(arg_string); in SetFromString()
653 Args::ArgEntry entry(arg, quote); in SetFromString()
690 io.mapRequired("quote", keys->quote); in mapping()