Searched refs:ArgEntry (Results 1 – 7 of 7) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | Args.h | 37 struct ArgEntry { struct 45 ArgEntry() = default; argument 46 ArgEntry(llvm::StringRef str, char quote); 140 llvm::ArrayRef<ArgEntry> entries() const { return m_entries; } in entries() 143 using const_iterator = std::vector<ArgEntry>::const_iterator; 149 const ArgEntry &operator[](size_t n) const { return m_entries[n]; } 357 std::vector<ArgEntry> m_entries;
|
| /freebsd-12.1/contrib/llvm/lib/OptRemarks/ |
| H A D | OptRemarksParser.cpp | 206 for (yaml::KeyValueNode &ArgEntry : *ArgMap) { in parseArg() 208 if (Error E = parseKey(KeyName, ArgEntry)) in parseArg() 216 "only one DebugLoc entry is allowed per argument.", ArgEntry); in parseArg() 218 if (Error E = parseDebugLoc(File, Line, Column, ArgEntry)) in parseArg() 226 "only one string entry is allowed per argument.", ArgEntry); in parseArg() 229 if (Error E = parseValue(ValueStr, ArgEntry)) in parseArg()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | Args.cpp | 160 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote) : quote(quote) { in ArgEntry() function in Args::ArgEntry 350 m_entries[idx] = ArgEntry(arg_str, quote_char); in ReplaceArgumentAtIndex() 380 m_entries[i] = ArgEntry(args[i], quote); in SetArguments() 693 Args::ArgEntry entry(arg, quote); in SetFromString()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | Options.cpp | 934 for (const Args::ArgEntry &entry : args) in GetArgvForParsing() 943 original, [arg](const Args::ArgEntry &D) { return D.c_str() == arg; }); in FindOriginalIter() 1319 const Args::ArgEntry &cursor = args[cursor_index]; in ParseForCompletion()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectSource.cpp | 766 llvm::find_if(current_command_args, [](const Args::ArgEntry &e) { in GetRepeatCommand()
|
| H A D | CommandObjectBreakpoint.cpp | 2194 for (const Args::ArgEntry &arg : command) in DoExecute()
|
| H A D | CommandObjectTarget.cpp | 2274 for (const Args::ArgEntry &arg : command.entries()) { in DoExecute()
|