/external/llvm-project/lldb/unittests/Utility/ |
D | StringListTest.cpp | 29 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 …]
|
D | CompletionRequestTest.cpp | 62 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/ |
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()
|
D | SBEnvironment.cpp | 122 PutEntry(entries.GetStringAtIndex(i)); in SetEntries()
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_locations/ |
D | TestBreakpointLocations.py | 112 …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/ |
D | SBStringList.h | 38 const char *GetStringAtIndex(size_t idx); 40 const char *GetStringAtIndex(size_t idx) const;
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectApropos.cpp | 68 result.GetOutputStream(), commands_found.GetStringAtIndex(i), in DoExecute() 69 "--", commands_help.GetStringAtIndex(i), max_len); in DoExecute()
|
D | CommandObjectMultiword.cpp | 52 sub_cmd = matches->GetStringAtIndex(0); in GetSubcommandSP() 191 new_matches.GetStringAtIndex(0) != nullptr && in HandleCompletion() 192 (arg0 == new_matches.GetStringAtIndex(0))) { in HandleCompletion()
|
D | CommandObjectHelp.cpp | 138 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/ |
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()
|
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandHistory.cpp | 64 llvm::StringRef CommandHistory::GetStringAtIndex(size_t idx) const { in GetStringAtIndex() function in CommandHistory 72 return GetStringAtIndex(idx); in operator []()
|
D | CommandInterpreter.cpp | 939 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/ |
D | CompletionRequest.h | 213 AddCompletion(completions.GetStringAtIndex(i), in AddCompletions() 214 descriptions.GetStringAtIndex(i)); in AddCompletions()
|
D | StringList.h | 76 const char *GetStringAtIndex(size_t idx) const;
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_command/ |
D | TestBreakpointCommand.py | 287 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/ |
D | sb_stringlist.py | 14 obj.GetStringAtIndex(0xffffffff)
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBStringList.i | 39 GetStringAtIndex (size_t idx);
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | CommandHistory.h | 33 llvm::StringRef GetStringAtIndex(size_t idx) const;
|
/external/tflite-support/tensorflow_lite_support/cc/task/core/ |
D | task_utils.cc | 49 std::string GetStringAtIndex(const TfLiteTensor* labels, int index) { in GetStringAtIndex() function
|
D | task_utils.h | 154 std::string GetStringAtIndex(const TfLiteTensor* labels, int index);
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/ |
D | TestBreakpointNames.py | 133 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/ |
D | TestExprCompletion.py | 242 common_match = match_strings.GetStringAtIndex(0)
|
/external/llvm-project/lldb/test/API/python_api/sbenvironment/ |
D | TestSBEnvironment.py | 28 (name, value) = entries.GetStringAtIndex(i).split("=")
|
/external/llvm-project/lldb/utils/lui/ |
D | commandwin.py | 77 self.el.content += matches.GetStringAtIndex(0)
|
/external/tflite-support/tensorflow_lite_support/cc/task/text/nlclassifier/ |
D | nl_classifier.cc | 60 using ::tflite::task::core::GetStringAtIndex; 276 label = GetStringAtIndex(labels, index); in BuildResults()
|