Home
last modified time | relevance | path

Searched refs:GetSize (Results 1 – 25 of 394) sorted by relevance

12345678910>>...16

/llvm-project-15.0.7/lldb/unittests/Utility/
H A DStringListTest.cpp18 EXPECT_EQ(0U, s.GetSize()); in TEST()
28 ASSERT_EQ(2U, s.GetSize()); in TEST()
40 ASSERT_EQ(1U, s.GetSize()); in TEST()
44 ASSERT_EQ(2U, s.GetSize()); in TEST()
52 ASSERT_EQ(1U, s.GetSize()); in TEST()
56 ASSERT_EQ(2U, s.GetSize()); in TEST()
67 ASSERT_EQ(1U, s.GetSize()); in TEST()
71 ASSERT_EQ(2U, s.GetSize()); in TEST()
82 ASSERT_EQ(1U, s.GetSize()); in TEST()
86 ASSERT_EQ(2U, s.GetSize()); in TEST()
[all …]
H A DCompletionRequestTest.cpp136 EXPECT_EQ(1U, matches.GetSize()); in TEST()
143 EXPECT_EQ(1U, matches.GetSize()); in TEST()
151 EXPECT_EQ(2U, matches.GetSize()); in TEST()
159 EXPECT_EQ(2U, matches.GetSize()); in TEST()
168 EXPECT_EQ(2U, matches.GetSize()); in TEST()
177 EXPECT_EQ(3U, matches.GetSize()); in TEST()
201 EXPECT_EQ(1U, matches.GetSize()); in TEST()
211 EXPECT_EQ(1U, matches.GetSize()); in TEST()
222 EXPECT_EQ(2U, matches.GetSize()); in TEST()
232 EXPECT_EQ(3U, matches.GetSize()); in TEST()
[all …]
/llvm-project-15.0.7/lldb/test/API/macosx/dyld-trie-symbols/
H A DTestDyldTrieSymbols.py30 self.assertEqual(unstripped_bazval_symbols.GetSize(), 1)
34 self.assertEqual(unstripped_Z3foo_symbols.GetSize(), 1)
36 self.assertEqual(unstripped_foo_symbols.GetSize(), 1)
43 self.assertEqual(unstripped_pat_symbols.GetSize(), 1)
46 self.assertEqual(unstripped_bar_symbols.GetSize(), 1)
66 self.assertEqual(stripped_Z3foo_symbols.GetSize(), 1)
68 self.assertEqual(stripped_foo_symbols.GetSize(), 1)
75 self.assertEqual(stripped_pat_symbols.GetSize(), 1)
80 self.assertEqual(stripped_bar_symbols.GetSize(), 0)
85 self.assertEqual(syms_ctx.GetSize(), 2)
[all …]
/llvm-project-15.0.7/lldb/test/API/python_api/frame/get-variables/
H A DTestGetVariables.py109 vars.GetSize(),
124 vars.GetSize(),
136 vars.GetSize(),
151 vars.GetSize(),
157 vars.GetSize(),
168 vars.GetSize(),
185 vars.GetSize(),
203 vars.GetSize(),
220 vars.GetSize(),
252 vars.GetSize(),
[all …]
/llvm-project-15.0.7/lldb/test/API/lang/c/find_struct_type/
H A DTestFindStructTypes.py34 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with struct")
38 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without struct")
42 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with union")
46 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without union")
50 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type with typedef")
54 self.assertEqual(type_list.GetSize(), 1, "Found one instance of the type without typedef")
/llvm-project-15.0.7/lldb/unittests/Interpreter/
H A DTestCompletion.cpp107 for (size_t I = 0; I < Paths.GetSize(); ++I) { in HasEquivalentFile()
120 ASSERT_EQ(4u, Results.GetSize()); in DoDirCompletions()
128 ASSERT_EQ(2u, Results.GetSize()); in DoDirCompletions()
139 for (size_t Idx = 0; Idx < SL.GetSize(); ++Idx) in toVector()
161 ASSERT_EQ(1u, Results.GetSize()); in TEST_F()
165 ASSERT_EQ(0u, Results.GetSize()); in TEST_F()
169 ASSERT_EQ(7u, Results.GetSize()); in TEST_F()
193 ASSERT_EQ(1u, Results.GetSize()); in TEST_F()
199 ASSERT_EQ(1u, Results.GetSize()); in TEST_F()
204 ASSERT_EQ(13u, Results.GetSize()); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/source/API/
H A DSBMemoryRegionInfoList.cpp33 size_t GetSize() const { return m_regions.size(); } in GetSize() function in MemoryRegionInfoListImpl
42 Reserve(GetSize() + list.GetSize()); in Append()
63 if (index >= GetSize()) in GetMemoryRegionInfoAtIndex()
106 uint32_t SBMemoryRegionInfoList::GetSize() const { in GetSize() function in SBMemoryRegionInfoList
109 return m_opaque_up->GetSize(); in GetSize()
H A DSBInstructionList.cpp52 size_t SBInstructionList::GetSize() { in GetSize() function in SBInstructionList
56 return m_opaque_sp->GetInstructionList().GetSize(); in GetSize()
64 if (m_opaque_sp && idx < m_opaque_sp->GetInstructionList().GetSize()) in GetInstructionAtIndex()
76 size_t num_instructions = GetSize(); in GetInstructionsCount()
144 size_t num_instructions = GetSize(); in GetDescription()
183 size_t len = GetSize(); in DumpEmulationForAllInstructions()
H A DSBThreadCollection.cpp68 size_t SBThreadCollection::GetSize() { in GetSize() function in SBThreadCollection
72 return m_opaque_sp->GetSize(); in GetSize()
80 if (m_opaque_sp && idx < m_opaque_sp->GetSize()) in GetThreadAtIndex()
H A DSBTypeEnumMember.cpp114 rhs_size = const_cast<SBTypeEnumMemberList &>(rhs).GetSize(); in SBTypeEnumMemberList()
136 rhs_size = const_cast<SBTypeEnumMemberList &>(rhs).GetSize(); in operator =()
160 uint32_t SBTypeEnumMemberList::GetSize() { in GetSize() function in SBTypeEnumMemberList
163 return m_opaque_up->GetSize(); in GetSize()
H A DSBValueList.cpp33 uint32_t GetSize() { return m_values.size(); } in GetSize() function in ValueListImpl
43 if (index >= GetSize()) in GetValueAtIndex()
157 uint32_t SBValueList::GetSize() const { in GetSize() function in SBValueList
162 size = m_opaque_up->GetSize(); in GetSize()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/
H A DNameToDIE.cpp54 const uint32_t size = m_map.GetSize(); in FindAllEntriesForUnit()
68 const uint32_t size = m_map.GetSize(); in Dump()
78 const uint32_t size = m_map.GetSize(); in ForEach()
87 const uint32_t size = other.m_map.GetSize(); in Append()
129 encoder.AppendU32(m_map.GetSize()); in Encode()
139 const size_t size = m_map.GetSize(); in operator ==()
140 if (size != rhs.m_map.GetSize()) in operator ==()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DVariableList.cpp104 const size_t initial_size = var_list.GetSize(); in AppendVariablesIfUnique()
108 return var_list.GetSize() - initial_size; in AppendVariablesIfUnique()
114 const size_t initial_size = var_list.GetSize(); in AppendVariablesIfUnique()
125 return var_list.GetSize() - initial_size; in AppendVariablesIfUnique()
131 const size_t initial_size = var_list.GetSize(); in AppendVariablesWithScope()
142 return var_list.GetSize() - initial_size; in AppendVariablesWithScope()
165 size_t VariableList::GetSize() const { return m_variables.size(); } in GetSize() function in VariableList
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_locations/
H A DTestBreakpointLocations.py107 list_size = str_list.GetSize()
108 self.assertEqual(cmd_list.GetSize() , list_size, "Added the right number of commands")
119 loc_list_size = loc_list.GetSize()
122 …self.assertEqual(loc_cmd_list.GetSize() , loc_list_size, "Added the right number of commands to lo…
127 self.assertEqual(cmd_list.GetSize() , list_size, "Added the right number of commands")
134 self.assertEqual(untouched_loc_cmds.GetSize() , 0, "Changed the wrong location")
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectSession.cpp157 start_idx.second = history.GetSize() - count.second; in DoExecute()
158 stop_idx.second = history.GetSize() - 1; in DoExecute()
161 stop_idx.second = history.GetSize() - 1; in DoExecute()
164 stop_idx.second = history.GetSize() - 1; in DoExecute()
169 stop_idx.second = history.GetSize() - 1; in DoExecute()
174 stop_idx.second = history.GetSize() - 1; in DoExecute()
H A DCommandObjectSource.cpp148 uint32_t num_scs = sc_list.GetSize(); in DumpLinesInSymbolContexts()
159 if (module_list.GetSize() && in DumpLinesInSymbolContexts()
304 assert(module_list.GetSize() > 0); in GetSymbolContextsForAddress()
387 size_t num_matches = sc_list_funcs.GetSize(); in DumpLinesInFunctions()
449 if (sc_list_lines.GetSize() == 0) { in DumpLinesInFunctions()
569 if (!m_module_list.GetSize()) { in DoExecute()
573 } else if (target->GetImages().GetSize() == 0) { in DoExecute()
928 size_t num_matches = sc_list.GetSize(); in DoExecute()
1015 if (sc_list.GetSize() == 0) { in DoExecute()
1047 if (sc_list.GetSize() == 0) { in DoExecute()
[all …]
H A DCommandObjectHelp.cpp125 if (found_cmd == nullptr || matches.GetSize() > 1) { in DoExecute()
136 if (matches.GetSize() >= 2) { in DoExecute()
139 size_t num_matches = matches.GetSize(); in DoExecute()
174 } else if (matches.GetSize() > 0) { in DoExecute()
178 const size_t match_count = matches.GetSize(); in DoExecute()
H A DCommandObjectApropos.cpp55 if (commands_found.GetSize() == 0) { in DoExecute()
61 if (commands_found.GetSize() > 0) { in DoExecute()
66 for (size_t i = 0; i < commands_found.GetSize(); ++i) in DoExecute()
/llvm-project-15.0.7/lldb/unittests/SymbolFile/PDB/
H A DSymbolFilePDBTests.cpp281 count = lt->GetSize(); in TEST_F()
332 count = lt->GetSize(); in TEST_F()
349 count = lt->GetSize(); in TEST_F()
369 EXPECT_EQ(1u, results.GetSize()); in TEST_F()
399 EXPECT_EQ(1u, results.GetSize()); in TEST_F()
464 EXPECT_EQ(1u, results.GetSize()); in TEST_F()
490 EXPECT_EQ(1u, results.GetSize()); in TEST_F()
565 EXPECT_GT(results.GetSize(), 1u); in TEST_F()
570 EXPECT_EQ(0u, results.GetSize()); in TEST_F()
610 EXPECT_EQ(0u, results.GetSize()); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp236 size_t ELFLinuxPrStatus::GetSize(const lldb_private::ArchSpec &arch) { in GetSize() function in ELFLinuxPrStatus
265 if (GetSize(arch) > data.GetByteSize()) { in Parse()
268 GetSize(arch), data.GetByteSize()); in Parse()
310 size_t ELFLinuxPrPsInfo::GetSize(const lldb_private::ArchSpec &arch) { in GetSize() function in ELFLinuxPrPsInfo
335 if (GetSize(arch) > data.GetByteSize()) { in Parse()
338 GetSize(arch), data.GetByteSize()); in Parse()
384 size_t ELFLinuxSigInfo::GetSize(const lldb_private::ArchSpec &arch) { in GetSize() function in ELFLinuxSigInfo
401 if (GetSize(arch) > data.GetByteSize()) { in Parse()
404 GetSize(arch), data.GetByteSize()); in Parse()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBValueList.i94 GetSize() const;
109 const size_t n = $self->GetSize(); in __str__()
120 size_t desc_len = description.GetSize(); in __str__()
135 return int(self.GetSize())
H A DSBInstructionList.i43 GetSize ();
80 return int(self.GetSize())
92 for idx in range(self.GetSize()):
/llvm-project-15.0.7/lldb/source/Expression/
H A DREPL.cpp140 const size_t num_lines = lines.GetSize(); in IOHandlerIsInputComplete()
153 std::string last_line = lines[lines.GetSize() - 1]; in CalculateActualIndentation()
171 if (!lines.GetSize()) { in IOHandlerFixIndentation()
227 .SetBaseLineNumber(m_code.GetSize() + 1); in IOHandlerInputComplete()
325 m_code.GetSize() + 1); in IOHandlerInputComplete()
334 const size_t var_count_before = persistent_state->GetSize(); in IOHandlerInputComplete()
364 for (size_t vi = var_count_before, ve = persistent_state->GetSize(); in IOHandlerInputComplete()
445 const uint32_t new_default_line = m_code.GetSize() + 1; in IOHandlerInputComplete()
473 .SetBaseLineNumber(m_code.GetSize() + 1); in IOHandlerInputComplete()
529 if (current_line_idx < current_lines->GetSize()) { in IOHandlerComplete()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointSite.cpp36 const size_t owner_count = m_owners.GetSize(); in ~BreakpointSite()
66 const size_t owner_count = m_owners.GetSize(); in IsBreakpointAtThisSite()
134 return m_owners.GetSize(); in RemoveOwner()
139 return m_owners.GetSize(); in GetNumberOfOwners()
207 return out_collection.GetSize(); in CopyOwnersList()
/llvm-project-15.0.7/lldb/test/API/python_api/findvalue_duplist/
H A DTestSBFrameFindValue.py50 True).GetSize() == 2,
63 True).GetSize() == 2,
76 True).GetSize() == 2,

12345678910>>...16