Home
last modified time | relevance | path

Searched refs:GetStringAtIndex (Results 1 – 25 of 35) sorted by relevance

12

/external/llvm-project/lldb/unittests/Utility/
DStringListTest.cpp29 EXPECT_STREQ("foo", s.GetStringAtIndex(0)); in TEST()
30 EXPECT_STREQ("bar", s.GetStringAtIndex(1)); in TEST()
33 EXPECT_STREQ("foo", orig.GetStringAtIndex(0)); in TEST()
34 EXPECT_STREQ("bar", orig.GetStringAtIndex(1)); in TEST()
41 EXPECT_STREQ("foo", s.GetStringAtIndex(0)); in TEST()
45 EXPECT_STREQ("foo", s.GetStringAtIndex(0)); in TEST()
46 EXPECT_STREQ("bar", s.GetStringAtIndex(1)); in TEST()
53 EXPECT_STREQ("foo", s.GetStringAtIndex(0)); in TEST()
57 EXPECT_STREQ("foo", s.GetStringAtIndex(0)); in TEST()
58 EXPECT_STREQ("bar", s.GetStringAtIndex(1)); in TEST()
[all …]
DCompletionRequestTest.cpp62 EXPECT_STREQ("boo", matches.GetStringAtIndex(0U)); in TEST()
64 EXPECT_STREQ("car", descriptions.GetStringAtIndex(0U)); in TEST()
137 EXPECT_STREQ("foo", matches.GetStringAtIndex(0)); in TEST()
144 EXPECT_STREQ("foo", matches.GetStringAtIndex(0)); in TEST()
152 EXPECT_STREQ("foo", matches.GetStringAtIndex(0)); in TEST()
153 EXPECT_STREQ("bar", matches.GetStringAtIndex(1)); in TEST()
160 EXPECT_STREQ("foo", matches.GetStringAtIndex(0)); in TEST()
161 EXPECT_STREQ("bar", matches.GetStringAtIndex(1)); in TEST()
169 EXPECT_STREQ("foo", matches.GetStringAtIndex(0)); in TEST()
170 EXPECT_STREQ("bar", matches.GetStringAtIndex(1)); in TEST()
[all …]
/external/llvm-project/lldb/source/API/
DSBStringList.cpp111 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()
DSBEnvironment.cpp122 PutEntry(entries.GetStringAtIndex(i)); in SetEntries()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/
DTestBreakpointLocations.py112 …self.assertEqual(str_list.GetStringAtIndex(i), cmd_list.GetStringAtIndex(i), "Mismatched commands.…
126 …self.assertEqual(loc_list.GetStringAtIndex(i), loc_cmd_list.GetStringAtIndex(i), "Mismatched comma…
131 …self.assertEqual(str_list.GetStringAtIndex(i), cmd_list.GetStringAtIndex(i), "Mismatched commands.…
/external/llvm-project/lldb/include/lldb/API/
DSBStringList.h38 const char *GetStringAtIndex(size_t idx);
40 const char *GetStringAtIndex(size_t idx) const;
/external/llvm-project/lldb/source/Commands/
DCommandObjectApropos.cpp68 result.GetOutputStream(), commands_found.GetStringAtIndex(i), in DoExecute()
69 "--", commands_help.GetStringAtIndex(i), max_len); in DoExecute()
DCommandObjectMultiword.cpp52 sub_cmd = matches->GetStringAtIndex(0); in GetSubcommandSP()
191 new_matches.GetStringAtIndex(0) != nullptr && in HandleCompletion()
192 (arg0 == new_matches.GetStringAtIndex(0))) { in HandleCompletion()
DCommandObjectHelp.cpp138 s.Printf("\n\t%s", matches.GetStringAtIndex(match_idx)); in DoExecute()
179 output_strm.Printf("\t%s\n", matches.GetStringAtIndex(i)); in DoExecute()
/external/llvm-project/lldb/source/Utility/
DStringList.cpp80 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()
/external/llvm-project/lldb/source/Interpreter/
DCommandHistory.cpp64 llvm::StringRef CommandHistory::GetStringAtIndex(size_t idx) const { in GetStringAtIndex() function in CommandHistory
72 return GetStringAtIndex(idx); in operator []()
DCommandInterpreter.cpp939 cmd.assign(matches->GetStringAtIndex(0)); in GetCommandSP()
951 cmd.assign(matches->GetStringAtIndex(num_cmd_matches)); in GetCommandSP()
964 matches->GetStringAtIndex(num_cmd_matches + num_alias_matches)); in GetCommandSP()
1147 full_name.assign(matches.GetStringAtIndex(0)); in GetAliasFullName()
1832 new_matches.GetStringAtIndex(0) != nullptr && in HandleCompletionMatches()
1834 new_matches.GetStringAtIndex(0)) == 0) { in HandleCompletionMatches()
1886 llvm::StringRef entry = m_command_history.GetStringAtIndex(i); in GetAutoSuggestionForCommand()
2295 const char *cmd = commands.GetStringAtIndex(idx); in HandleCommands()
3173 error_msg.Printf("\t%s\n", matches.GetStringAtIndex(i)); in ResolveCommandImpl()
/external/llvm-project/lldb/include/lldb/Utility/
DCompletionRequest.h213 AddCompletion(completions.GetStringAtIndex(i), in AddCompletions()
214 descriptions.GetStringAtIndex(i)); in AddCompletions()
DStringList.h76 const char *GetStringAtIndex(size_t idx) const;
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/
DTestBreakpointCommand.py287 self.assertEqual(com_list.GetStringAtIndex(0), "bt", "First bt")
288 self.assertEqual(com_list.GetStringAtIndex(1), "thread list", "Next thread list")
289 self.assertEqual(com_list.GetStringAtIndex(2), "continue", "Last continue")
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_stringlist.py14 obj.GetStringAtIndex(0xffffffff)
/external/llvm-project/lldb/bindings/interface/
DSBStringList.i39 GetStringAtIndex (size_t idx);
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandHistory.h33 llvm::StringRef GetStringAtIndex(size_t idx) const;
/external/tflite-support/tensorflow_lite_support/cc/task/core/
Dtask_utils.cc49 std::string GetStringAtIndex(const TfLiteTensor* labels, int index) { in GetStringAtIndex() function
Dtask_utils.h154 std::string GetStringAtIndex(const TfLiteTensor* labels, int index);
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/
DTestBreakpointNames.py133 name = name_list.GetStringAtIndex(0)
201 …self.assertEqual(self.cmd_list.GetStringAtIndex(idx), set_cmds.GetStringAtIndex(idx), "Command %d"…
/external/llvm-project/lldb/test/API/commands/expression/completion/
DTestExprCompletion.py242 common_match = match_strings.GetStringAtIndex(0)
/external/llvm-project/lldb/test/API/python_api/sbenvironment/
DTestSBEnvironment.py28 (name, value) = entries.GetStringAtIndex(i).split("=")
/external/llvm-project/lldb/utils/lui/
Dcommandwin.py77 self.el.content += matches.GetStringAtIndex(0)
/external/tflite-support/tensorflow_lite_support/cc/task/text/nlclassifier/
Dnl_classifier.cc60 using ::tflite::task::core::GetStringAtIndex;
276 label = GetStringAtIndex(labels, index); in BuildResults()

12