Searched refs:ArgEntry (Results 1 – 9 of 9) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Args.h | 35 struct ArgEntry { struct 39 friend struct llvm::yaml::MappingTraits<Args::ArgEntry>; 47 ArgEntry() = default; 48 ArgEntry(llvm::StringRef str, char quote); 130 llvm::ArrayRef<ArgEntry> entries() const { return m_entries; } 132 using const_iterator = std::vector<ArgEntry>::const_iterator; 292 std::vector<ArgEntry> m_entries; 394 lldb_private::Args::ArgEntry denormalize(IO &) { 395 return lldb_private::Args::ArgEntry(value, quote); 400 static void mapping(IO &io, lldb_private::Args::ArgEntry &v); [all …]
|
| H A D | CompletionRequest.h | 138 const Args::ArgEntry &GetParsedArg() { in GetParsedArg()
|
| /freebsd-13.1/contrib/llvm-project/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 341 m_entries[idx] = ArgEntry(arg_str, quote_char); in ReplaceArgumentAtIndex() 365 m_entries[i] = ArgEntry(args[i], quote); in SetArguments() 652 Args::ArgEntry entry(arg, quote); in SetFromString() 685 void llvm::yaml::MappingTraits<Args::ArgEntry>::mapping(IO &io, in mapping() 686 Args::ArgEntry &v) { in mapping() 687 MappingNormalization<NormalizedArgEntry, Args::ArgEntry> keys(io, v); in mapping()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Remarks/ |
| H A D | YAMLRemarkParser.cpp | 371 for (yaml::KeyValueNode &ArgEntry : *ArgMap) { in parseArg() 372 Expected<StringRef> MaybeKey = parseKey(ArgEntry); in parseArg() 382 ArgEntry); in parseArg() 384 if (Expected<RemarkLocation> MaybeLoc = parseDebugLoc(ArgEntry)) { in parseArg() 393 return error("only one string entry is allowed per argument.", ArgEntry); in parseArg() 396 if (Expected<StringRef> MaybeStr = parseStr(ArgEntry)) in parseArg()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | Options.cpp | 898 for (const Args::ArgEntry &entry : args) in GetArgvForParsing() 908 original, [arg](const Args::ArgEntry &D) { return D.c_str() == arg; }); in FindOriginalIter() 1275 const Args::ArgEntry &cursor = args[cursor_index]; in ParseForCompletion()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectSettings.cpp | 526 for (const Args::ArgEntry &arg : args) { in DoExecute()
|
| H A D | CommandObjectSource.cpp | 736 llvm::find_if(current_command_args, [](const Args::ArgEntry &e) { in GetRepeatCommand()
|
| H A D | CommandObjectTarget.cpp | 826 for (const Args::ArgEntry &arg : args) { in DoExecute() 2184 for (const Args::ArgEntry &arg : command.entries()) { in DoExecute() 2963 for (const Args::ArgEntry &arg : command) { in DoExecute()
|
| H A D | CommandObjectBreakpoint.cpp | 1966 for (const Args::ArgEntry &arg : command) { in DoExecute()
|