Searched refs:GetStringAtIndex (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBStringList.h38 const char *GetStringAtIndex(size_t idx);
40 const char *GetStringAtIndex(size_t idx) const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBStringList.cpp111 const char *SBStringList::GetStringAtIndex(size_t idx) { function in class:SBStringList
112 LLDB_RECORD_METHOD(const char *, SBStringList, GetStringAtIndex, (size_t),
116 return m_opaque_up->GetStringAtIndex(idx);
121 const char *SBStringList::GetStringAtIndex(size_t idx) const { function in class:SBStringList
122 LLDB_RECORD_METHOD_CONST(const char *, SBStringList, GetStringAtIndex,
126 return m_opaque_up->GetStringAtIndex(idx);
155 LLDB_REGISTER_METHOD(const char *, SBStringList, GetStringAtIndex,
157 LLDB_REGISTER_METHOD_CONST(const char *, SBStringList, GetStringAtIndex,
H A DSBProcess.cpp1086 paths_vec.push_back(paths.GetStringAtIndex(i));
H A DSBTarget.cpp1059 func_names_set.insert(func_names.GetStringAtIndex(i));
1291 name_vector.push_back(matching_names.GetStringAtIndex(i));
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBStringList.i39 GetStringAtIndex (size_t idx);
48 return lldb_iter(self, 'GetSize', 'GetStringAtIndex')
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectApropos.cpp69 result.GetOutputStream(), commands_found.GetStringAtIndex(i),
70 "--", commands_help.GetStringAtIndex(i), max_len);
H A DCommandObjectMultiword.cpp52 sub_cmd = matches->GetStringAtIndex(0);
192 new_matches.GetStringAtIndex(0) != nullptr &&
193 (arg0 == new_matches.GetStringAtIndex(0))) {
H A DCommandObjectHelp.cpp138 s.Printf("\n\t%s", matches.GetStringAtIndex(match_idx));
179 output_strm.Printf("\t%s\n", matches.GetStringAtIndex(i));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandHistory.h33 llvm::StringRef GetStringAtIndex(size_t idx) const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandHistory.cpp64 llvm::StringRef CommandHistory::GetStringAtIndex(size_t idx) const { function in class:CommandHistory
72 return GetStringAtIndex(idx);
H A DCommandInterpreter.cpp909 cmd.assign(matches->GetStringAtIndex(0));
921 cmd.assign(matches->GetStringAtIndex(num_cmd_matches));
934 matches->GetStringAtIndex(num_cmd_matches + num_alias_matches));
1116 full_name.assign(matches.GetStringAtIndex(0));
1792 new_matches.GetStringAtIndex(0) != nullptr &&
1794 new_matches.GetStringAtIndex(0)) == 0) {
2221 const char *cmd = commands.GetStringAtIndex(idx);
3038 error_msg.Printf("\t%s\n", matches.GetStringAtIndex(i));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h188 AddCompletion(completions.GetStringAtIndex(i),
189 descriptions.GetStringAtIndex(i));
H A DStringList.h76 const char *GetStringAtIndex(size_t idx) const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DStringList.cpp80 const char *StringList::GetStringAtIndex(size_t idx) const { function in class:StringList
95 strm.PutCString(GetStringAtIndex(i));
200 strm << GetStringAtIndex(i);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp136 const char *first_line = lines.GetStringAtIndex(0);
479 const char *line_cstr = current_lines->GetStringAtIndex(i);
495 request.AddCompletion(matches.GetStringAtIndex(0), "",
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1419 sstr.Printf(" %s", input.GetStringAtIndex(i));
1521 sstr.Printf(" %s", user_input.GetStringAtIndex(i));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp860 std::string currentLine = lines.GetStringAtIndex(m_current_line_index);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp2621 ? cur_hook_sp->GetCommands().GetStringAtIndex(0)
3205 s->Indent(m_commands.GetStringAtIndex(i));
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp2763 m_text.GetStringAtIndex(m_first_visible_line + y - min_y), 1);

Completed in 169 milliseconds