reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Utility/CompletionRequest.h
  114     return GetParsedLine()[GetCursorIndex()];
tools/lldb/source/Breakpoint/BreakpointIDList.cpp
  125     current_arg = old_args[i].ref();
  149                BreakpointID::IsRangeIdentifier(old_args[i + 1].ref()) &&
  151                BreakpointID::IsValidIDExpression(old_args[i + 2].ref())) {
  153       range_to = old_args[i + 2].ref();
  158       llvm::StringRef tmp_str = old_args[i].ref();
tools/lldb/source/Commands/CommandObjectApropos.cpp
   47     auto search_word = args[0].ref();
   61                                        args[0].c_str());
   65               "The following commands may relate to '%s':\n", args[0].c_str());
   82             args[0].ref());
tools/lldb/source/Commands/CommandObjectCommands.cpp
  286     FileSpec cmd_file(command[0].ref());
  549     auto alias_command = args[0].ref();
  578           args[0].c_str());
  656     const std::string alias_command(args[0].ref());
  657     const std::string actual_command(args[1].ref());
  689       auto sub_command = args[0].ref();
  696             args[0].c_str(), actual_command.c_str());
  783     auto command_name = args[0].ref();
  789           args[0].c_str());
  799             args[0].c_str());
  803             args[0].c_str());
  813             args[0].c_str());
  816                                      args[0].c_str());
  865     auto command_name = args[0].ref();
  881           args[0].c_str());
  991     auto name = command[0].ref();
 1659     m_cmd_name = command[0].ref();
 1801     auto cmd_name = command[0].ref();
 1805       result.AppendErrorWithFormat("command %s not found", command[0].c_str());
tools/lldb/source/Commands/CommandObjectFrame.cpp
  356             command[0].c_str());
  364         if (command[0].ref().getAsInteger(0, frame_idx)) {
  366                                        command[0].c_str());
tools/lldb/source/Commands/CommandObjectHelp.cpp
   99     auto command_name = command[0].ref();
  171                                         command[0].c_str(), sstr.GetData());
  211       m_interpreter.GetCommandObject(request.GetParsedLine()[0].ref());
tools/lldb/source/Commands/CommandObjectLog.cpp
  169     const std::string channel = args[0].ref();
  242     const std::string channel = args[0].ref();
  328       auto sub_command = args[0].ref();
  345       auto sub_command = args[0].ref();
  346       auto param = args[1].ref();
tools/lldb/source/Commands/CommandObjectMemory.cpp
  596       addr = OptionArgParser::ToAddress(&m_exe_ctx, command[0].ref(),
  608           &m_exe_ctx, command[1].ref(), LLDB_INVALID_ADDRESS, nullptr);
 1041         &m_exe_ctx, command[0].ref(), LLDB_INVALID_ADDRESS, &error);
 1047         &m_exe_ctx, command[1].ref(), LLDB_INVALID_ADDRESS, &error);
 1346         &m_exe_ctx, command[0].ref(), LLDB_INVALID_ADDRESS, &error);
 1642         &m_exe_ctx, command[0].ref(), LLDB_INVALID_ADDRESS, &error);
 1707           auto load_addr_str = command[0].ref();
 1712                 "invalid address argument \"%s\": %s\n", command[0].c_str(),
tools/lldb/source/Commands/CommandObjectMultiword.cpp
   96   auto sub_command = args[0].ref();
  185   auto arg0 = request.GetParsedLine()[0].ref();
  228       GetSubcommandObject(current_command_args[index].ref());
tools/lldb/source/Commands/CommandObjectPlugin.cpp
   60     FileSpec dylib_fspec(command[0].ref());
tools/lldb/source/Commands/CommandObjectRegister.cpp
  338       auto reg_name = command[0].ref();
  339       auto value_str = command[1].ref();
tools/lldb/source/Interpreter/Options.cpp
 1077       auto tmp_arg = args_copy[idx].ref();
 1087         (args_copy[idx].ref() == OptionParser::GetOptionArgument())) {
 1089         auto tmp_arg = args_copy[idx].ref();
 1277   const Args::ArgEntry &cursor = args[cursor_index];
tools/lldb/unittests/Utility/ArgsTest.cpp
  155   EXPECT_EQ("foo", args[0].ref());
  156   EXPECT_EQ("bar", args[1].ref());
  157   EXPECT_EQ("baz", args[2].ref());