Home
last modified time | relevance | path

Searched defs:ArgEntry (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArgs.h35 struct ArgEntry { struct
47 ArgEntry() = default; argument
50 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()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp161 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote, in ArgEntry() function in Args::ArgEntry