Searched refs:ArgEntry (Results 1 - 13 of 13) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArgs.h35 struct ArgEntry { struct in class:lldb_private::Args
45 ArgEntry() = default;
46 ArgEntry(llvm::StringRef str, char quote);
128 llvm::ArrayRef<ArgEntry> entries() const { return m_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;
291 /// These strings are owned by the ArgEntry object in m_entries with the
H A DCompletionRequest.h138 const Args::ArgEntry &GetParsedArg() {
/freebsd-current/contrib/llvm-project/llvm/lib/Remarks/
H A DYAMLRemarkParser.cpp374 for (yaml::KeyValueNode &ArgEntry : *ArgMap) {
375 Expected<StringRef> MaybeKey = parseKey(ArgEntry);
385 ArgEntry);
387 if (Expected<RemarkLocation> MaybeLoc = parseDebugLoc(ArgEntry)) {
396 return error("only one string entry is allowed per argument.", ArgEntry);
399 if (Expected<StringRef> MaybeStr = parseStr(ArgEntry))
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DArgs.cpp159 Args::ArgEntry::ArgEntry(llvm::StringRef str, char quote) : quote(quote) { function in class:Args::ArgEntry
345 m_entries[idx] = ArgEntry(arg_str, quote_char);
369 m_entries[i] = ArgEntry(args[i], quote);
659 Args::ArgEntry entry(arg, quote);
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptions.cpp856 for (const Args::ArgEntry &entry : args)
866 original, [arg](const Args::ArgEntry &D) { return D.c_str() == arg; });
1246 const Args::ArgEntry &cursor = args[cursor_index];
H A DCommandObject.cpp730 const Args::ArgEntry &value = entry.value();
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp723 llvm::find_if(current_command_args, [](const Args::ArgEntry &e) {
H A DCommandObjectSettings.cpp520 for (const Args::ArgEntry &arg : args) {
H A DCommandObjectTarget.cpp869 for (const Args::ArgEntry &arg : args) {
2333 for (const Args::ArgEntry &arg : command.entries()) {
3310 for (const Args::ArgEntry &arg : command) {
H A DCommandObjectBreakpoint.cpp1948 for (const Args::ArgEntry &arg : command) {
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp3658 for (const Args::ArgEntry &entry : signal_names) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp772 for (const Args::ArgEntry &arg : args) {
H A DProcessGDBRemote.cpp862 for (const Args::ArgEntry &entry : args) {

Completed in 229 milliseconds