Searched defs:ArgEntry (Results 1 – 2 of 2) sorted by relevance
35 struct ArgEntry { struct47 ArgEntry() = default; argument50 llvm::StringRef ref() const { return c_str(); } in ref()51 const char *c_str() const { return ptr.get(); } in c_str()54 bool IsQuoted() const { return quote != '\0'; } in IsQuoted()55 char GetQuoteChar() const { return quote; } in GetQuoteChar()56 std::optional<uint16_t> GetPos() const { return column; } in GetPos()57 size_t GetLength() const { return ref().size(); } in GetLength()
161 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote, in ArgEntry() function in Args::ArgEntry