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
45 ArgEntry() = default; argument
46 ArgEntry(llvm::StringRef str, char quote);
128 llvm::ArrayRef<ArgEntry> entries() const { return m_entries; } in entries()
130 using const_iterator = std::vector<ArgEntry>::const_iterator;
136 const ArgEntry &operator[](size_t n) const { return m_entries[n]; }
288 std::vector<ArgEntry> m_entries;
H A DCompletionRequest.h138 const Args::ArgEntry &GetParsedArg() { in GetParsedArg()
/freebsd/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp374 for (yaml::KeyValueNode &ArgEntry : *ArgMap) { in parseArg()
375 Expected<StringRef> MaybeKey = parseKey(ArgEntry); in parseArg()
385 ArgEntry); in parseArg()
387 if (Expected<RemarkLocation> MaybeLoc = parseDebugLoc(ArgEntry)) { in parseArg()
396 return error("only one string entry is allowed per argument.", ArgEntry); in parseArg()
399 if (Expected<StringRef> MaybeStr = parseStr(ArgEntry)) in parseArg()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp159 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote) : quote(quote) { in ArgEntry() function in Args::ArgEntry
345 m_entries[idx] = ArgEntry(arg_str, quote_char); in ReplaceArgumentAtIndex()
369 m_entries[i] = ArgEntry(args[i], quote); in SetArguments()
659 Args::ArgEntry entry(arg, quote); in SetFromString()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp856 for (const Args::ArgEntry &entry : args) in GetArgvForParsing()
866 original, [arg](const Args::ArgEntry &D) { return D.c_str() == arg; }); in FindOriginalIter()
1232 const Args::ArgEntry &cursor = args[cursor_index]; in ParseForCompletion()
H A DCommandObject.cpp807 const Args::ArgEntry &value = entry.value(); in Execute()
H A DCommandInterpreter.cpp1683 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.cpp723 llvm::find_if(current_command_args, [](const Args::ArgEntry &e) { in GetRepeatCommand()
H A DCommandObjectTarget.cpp838 for (const Args::ArgEntry &arg : args) { in DoExecute()
2265 for (const Args::ArgEntry &arg : command.entries()) { in DoExecute()
3233 for (const Args::ArgEntry &arg : command) { in DoExecute()
H A DCommandObjectBreakpoint.cpp1906 for (const Args::ArgEntry &arg : command) { in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2692 for (const Args::ArgEntry &entry : args) { in RunScriptBasedParsedCommand()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp785 for (const Args::ArgEntry &arg : args) { in LaunchProcess()
H A DProcessGDBRemote.cpp862 for (const Args::ArgEntry &entry : args) { in ConnectToDebugserver()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp3646 for (const Args::ArgEntry &entry : signal_names) { in ClearDummySignals()