Searched refs:ArgEntry (Results 1 – 15 of 15) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Args.h | 35 struct ArgEntry { struct 47 ArgEntry() = default; argument 48 ArgEntry(llvm::StringRef str, char quote, std::optional<uint16_t> column); 132 llvm::ArrayRef<ArgEntry> entries() const { return m_entries; } in entries() 134 using const_iterator = std::vector<ArgEntry>::const_iterator; 140 const ArgEntry &operator[](size_t n) const { return m_entries[n]; } 292 std::vector<ArgEntry> m_entries;
|
| H A D | CompletionRequest.h | 143 const Args::ArgEntry &GetParsedArg() { in GetParsedArg()
|
| /freebsd/contrib/llvm-project/llvm/lib/Remarks/ |
| H A D | YAMLRemarkParser.cpp | 349 for (yaml::KeyValueNode &ArgEntry : *ArgMap) { in parseArg() 350 Expected<StringRef> MaybeKey = parseKey(ArgEntry); in parseArg() 360 ArgEntry); in parseArg() 362 if (Expected<RemarkLocation> MaybeLoc = parseDebugLoc(ArgEntry)) { in parseArg() 371 return error("only one string entry is allowed per argument.", ArgEntry); in parseArg() 374 if (Expected<StringRef> MaybeStr = parseStr(ArgEntry)) in parseArg()
|
| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Args.cpp | 161 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote, in ArgEntry() function in Args::ArgEntry 355 m_entries[idx] = ArgEntry(arg_str, quote_char, std::nullopt); in ReplaceArgumentAtIndex() 379 m_entries[i] = ArgEntry(args[i], quote, std::nullopt); in SetArguments() 670 Args::ArgEntry entry(arg, quote, std::nullopt); in SetFromString()
|
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | Options.cpp | 41 OptionParseError(const Args::ArgEntry &arg, std::string msg) in OptionParseError() 891 for (const Args::ArgEntry &entry : args) in GetArgvForParsing() 901 original, [arg](const Args::ArgEntry &D) { return D.c_str() == arg; }); in FindOriginalIter() 1267 const Args::ArgEntry &cursor = args[cursor_index]; in ParseForCompletion()
|
| H A D | CommandObject.cpp | 806 const Args::ArgEntry &value = entry.value(); in Execute()
|
| H A D | CommandInterpreter.cpp | 1771 const Args::ArgEntry &entry = cmd_args[index]; in BuildAliasResult()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectSettings.cpp | 488 for (const Args::ArgEntry &arg : args) { in DoExecute()
|
| H A D | CommandObjectSource.cpp | 714 llvm::find_if(current_command_args, [](const Args::ArgEntry &e) { in GetRepeatCommand()
|
| H A D | CommandObjectTarget.cpp | 840 for (const Args::ArgEntry &arg : args) { in DoExecute() 2285 for (const Args::ArgEntry &arg : command.entries()) { in DoExecute() 3248 for (const Args::ArgEntry &arg : command) { in DoExecute()
|
| H A D | CommandObjectBreakpoint.cpp | 1946 for (const Args::ArgEntry &arg : command) { in DoExecute()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 2666 for (const Args::ArgEntry &entry : args) { in RunScriptBasedParsedCommand()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationClient.cpp | 814 for (const Args::ArgEntry &arg : args) { in LaunchProcess()
|
| H A D | ProcessGDBRemote.cpp | 872 for (const Args::ArgEntry &entry : args) { in ConnectToDebugserver()
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | Target.cpp | 3802 for (const Args::ArgEntry &entry : signal_names) { in ClearDummySignals()
|