Home
last modified time | relevance | path

Searched refs:ArgEntry (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArgs.h35 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 DCompletionRequest.h143 const Args::ArgEntry &GetParsedArg() { in GetParsedArg()
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp349 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 DArgs.cpp161 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 DOptions.cpp41 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 DCommandObject.cpp806 const Args::ArgEntry &value = entry.value(); in Execute()
H A DCommandInterpreter.cpp1771 const Args::ArgEntry &entry = cmd_args[index]; in BuildAliasResult()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSettings.cpp488 for (const Args::ArgEntry &arg : args) { in DoExecute()
H A DCommandObjectSource.cpp714 llvm::find_if(current_command_args, [](const Args::ArgEntry &e) { in GetRepeatCommand()
H A DCommandObjectTarget.cpp840 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 DCommandObjectBreakpoint.cpp1946 for (const Args::ArgEntry &arg : command) { in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2666 for (const Args::ArgEntry &entry : args) { in RunScriptBasedParsedCommand()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp814 for (const Args::ArgEntry &arg : args) { in LaunchProcess()
H A DProcessGDBRemote.cpp872 for (const Args::ArgEntry &entry : args) { in ConnectToDebugserver()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp3802 for (const Args::ArgEntry &entry : signal_names) { in ClearDummySignals()