Searched defs:ArgEntry (Results 1 – 2 of 2) sorted by relevance
35 struct ArgEntry { struct45 ArgEntry() = default; argument48 llvm::StringRef ref() const { return c_str(); } in ref()49 const char *c_str() const { return ptr.get(); } in c_str()52 bool IsQuoted() const { return quote != '\0'; } in IsQuoted()53 char GetQuoteChar() const { return quote; } in GetQuoteChar()
159 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote) : quote(quote) { in ArgEntry() function in Args::ArgEntry