| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBStringList.cpp | 111 const char *SBStringList::GetStringAtIndex(size_t idx) { in GetStringAtIndex() function in SBStringList 112 LLDB_RECORD_METHOD(const char *, SBStringList, GetStringAtIndex, (size_t), in GetStringAtIndex() 116 return m_opaque_up->GetStringAtIndex(idx); in GetStringAtIndex() 121 const char *SBStringList::GetStringAtIndex(size_t idx) const { in GetStringAtIndex() function in SBStringList 122 LLDB_RECORD_METHOD_CONST(const char *, SBStringList, GetStringAtIndex, in GetStringAtIndex() 126 return m_opaque_up->GetStringAtIndex(idx); in GetStringAtIndex() 155 LLDB_REGISTER_METHOD(const char *, SBStringList, GetStringAtIndex, in RegisterMethods() 157 LLDB_REGISTER_METHOD_CONST(const char *, SBStringList, GetStringAtIndex, in RegisterMethods()
|
| H A D | SBEnvironment.cpp | 122 PutEntry(entries.GetStringAtIndex(i)); in SetEntries()
|
| H A D | SBTarget.cpp | 1110 func_names_set.insert(func_names.GetStringAtIndex(i)); in BreakpointCreateBySourceRegex() 1342 name_vector.push_back(matching_names.GetStringAtIndex(i)); in BreakpointsCreateFromFile()
|
| H A D | SBProcess.cpp | 1090 paths_vec.push_back(paths.GetStringAtIndex(i)); in LoadImageUsingPaths()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBStringList.h | 38 const char *GetStringAtIndex(size_t idx); 40 const char *GetStringAtIndex(size_t idx) const;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectApropos.cpp | 68 result.GetOutputStream(), commands_found.GetStringAtIndex(i), in DoExecute() 69 "--", commands_help.GetStringAtIndex(i), max_len); in DoExecute()
|
| H A D | CommandObjectHelp.cpp | 138 s.Printf("\n\t%s", matches.GetStringAtIndex(match_idx)); in DoExecute() 177 output_strm.Printf("\t%s\n", matches.GetStringAtIndex(i)); in DoExecute()
|
| H A D | CommandObjectMultiword.cpp | 52 sub_cmd = matches->GetStringAtIndex(0); in GetSubcommandSP() 189 new_matches.GetStringAtIndex(0) != nullptr && in HandleCompletion() 190 (arg0 == new_matches.GetStringAtIndex(0))) { in HandleCompletion()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | StringList.cpp | 80 const char *StringList::GetStringAtIndex(size_t idx) const { in GetStringAtIndex() function in StringList 95 strm.PutCString(GetStringAtIndex(i)); in Join() 200 strm << GetStringAtIndex(i); in CopyList()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandHistory.cpp | 60 llvm::StringRef CommandHistory::GetStringAtIndex(size_t idx) const { in GetStringAtIndex() function in CommandHistory 68 return GetStringAtIndex(idx); in operator []()
|
| H A D | CommandInterpreter.cpp | 949 cmd.assign(matches->GetStringAtIndex(0)); in GetCommandSP() 961 cmd.assign(matches->GetStringAtIndex(num_cmd_matches)); in GetCommandSP() 974 matches->GetStringAtIndex(num_cmd_matches + num_alias_matches)); in GetCommandSP() 1156 full_name.assign(matches.GetStringAtIndex(0)); in GetAliasFullName() 1837 new_matches.GetStringAtIndex(0) != nullptr && in HandleCompletionMatches() 1839 new_matches.GetStringAtIndex(0)) == 0) { in HandleCompletionMatches() 1889 llvm::StringRef entry = m_command_history.GetStringAtIndex(i); in GetAutoSuggestionForCommand() 2299 const char *cmd = commands.GetStringAtIndex(idx); in HandleCommands() 3184 error_msg.Printf("\t%s\n", matches.GetStringAtIndex(i)); in ResolveCommandImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | CompletionRequest.h | 213 AddCompletion(completions.GetStringAtIndex(i), in AddCompletions() 214 descriptions.GetStringAtIndex(i)); in AddCompletions()
|
| H A D | StringList.h | 76 const char *GetStringAtIndex(size_t idx) const;
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBStringList.i | 42 GetStringAtIndex (size_t idx);
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandHistory.h | 33 llvm::StringRef GetStringAtIndex(size_t idx) const;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 137 const char *first_line = lines.GetStringAtIndex(0); in IOHandlerIsInputComplete() 526 const char *line_cstr = current_lines->GetStringAtIndex(i); in IOHandlerComplete()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
| H A D | ScriptInterpreterLua.cpp | 86 if (IsQuitCommand(lines.GetStringAtIndex(last))) { in IOHandlerIsInputComplete()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 1423 sstr.Printf(" %s", input.GetStringAtIndex(i)); in GenerateFunction() 1525 sstr.Printf(" %s", user_input.GetStringAtIndex(i)); in GenerateTypeSynthClass()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | Editline.cpp | 871 std::string currentLine = lines.GetStringAtIndex(m_current_line_index); in FixIndentationCommand()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | Target.cpp | 3367 s->PutCString(m_commands.GetStringAtIndex(0)); in GetSubclassDescription() 3374 s->Indent(m_commands.GetStringAtIndex(i)); in GetSubclassDescription()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 4760 1, m_text.GetStringAtIndex(m_first_visible_line + y - min_y)); in WindowDelegateDraw()
|
| /freebsd-13.1/lib/clang/liblldb/ |
| H A D | LLDBWrapLua.cpp | 44164 result = (char *)(arg1)->GetStringAtIndex(arg2); in _wrap_SBStringList_GetStringAtIndex()
|