Home
last modified time | relevance | path

Searched refs:GetItemAtIndex (Results 1 – 25 of 26) sorted by relevance

12

/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp305 PythonObject chk_value1 = list.GetItemAtIndex(0); in TEST_F()
306 PythonObject chk_value2 = list.GetItemAtIndex(1); in TEST_F()
334 PythonObject chk_value1 = list.GetItemAtIndex(0); in TEST_F()
335 PythonObject chk_value2 = list.GetItemAtIndex(1); in TEST_F()
357 array_sp->GetItemAtIndex(0)->GetType()); in TEST_F()
359 array_sp->GetItemAtIndex(1)->GetType()); in TEST_F()
361 auto int_sp = array_sp->GetItemAtIndex(0)->GetAsInteger(); in TEST_F()
387 EXPECT_EQ(tuple.GetItemAtIndex(0).get(), int_value.get()); in TEST_F()
399 EXPECT_EQ(tuple.GetItemAtIndex(0).get(), int_value.get()); in TEST_F()
426 array_sp->GetItemAtIndex(0)->GetType()); in TEST_F()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DStructuredData.h188 ObjectSP GetItemAtIndex(size_t idx) const { in GetItemAtIndex() function
197 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsInteger()
217 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsString()
236 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsString()
256 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsDictionary()
266 ObjectSP value_sp = GetItemAtIndex(idx); in GetItemAtIndexAsArray()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DStructuredDataImpl.h122 StructuredData::ObjectSP GetItemAtIndex(size_t idx) const { in GetItemAtIndex() function
126 return array->GetItemAtIndex(idx); in GetItemAtIndex()
/llvm-project-15.0.7/lldb/source/API/
H A DSBStructuredData.cpp157 lldb::SBStructuredData SBStructuredData::GetItemAtIndex(size_t idx) const { in GetItemAtIndex() function in SBStructuredData
161 result.m_impl_up->SetObjectSP(m_impl_up->GetItemAtIndex(idx)); in GetItemAtIndex()
/llvm-project-15.0.7/lldb/test/API/python_api/sbstructureddata/
H A DTestStructuredDataAPI.py187 string_struct = array_struct.GetItemAtIndex(0)
196 string_struct = array_struct.GetItemAtIndex(1)
/llvm-project-15.0.7/lldb/unittests/API/
H A DSBStructuredDataTest.cpp28 EXPECT_EQ(data.GetItemAtIndex(0).GetType(), eStructuredDataTypeInvalid); in TEST_F()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBStructuredData.i43 lldb::SBStructuredData GetItemAtIndex(size_t idx) const;
H A DSBTarget.i602 PythonString py_str = list.GetItemAtIndex(i).AsType<PythonString>();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBStructuredData.h63 lldb::SBStructuredData GetItemAtIndex(size_t idx) const;
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp630 ->GetItemAtIndex(0) in GenerateSummary()
642 ->GetItemAtIndex(0) in GenerateSummary()
658 ->GetItemAtIndex(0); in GenerateSummary()
727 ->GetItemAtIndex(0); in GetLocationDescription()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp524 PythonObject PythonList::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex() function in PythonList
551 PythonObject obj = GetItemAtIndex(i); in CreateStructuredArray()
603 PythonObject PythonTuple::GetItemAtIndex(uint32_t index) const { in GetItemAtIndex() function in PythonTuple
622 PythonObject obj = GetItemAtIndex(i); in CreateStructuredArray()
719 PythonObject key = keys.GetItemAtIndex(i); in CreateStructuredDictionary()
H A DPythonDataObjects.h500 PythonObject GetItemAtIndex(uint32_t index) const;
522 PythonObject GetItemAtIndex(uint32_t index) const;
H A DScriptInterpreterPython.cpp1473 PyObject *item = result_list.GetItemAtIndex(i).get(); in GetRecognizedArguments()
/llvm-project-15.0.7/lldb/source/Utility/
H A DStructuredData.cpp121 return this->GetAsArray()->GetItemAtIndex(val); in GetObjectForDotSeparatedPath()
/llvm-project-15.0.7/lldb/source/Host/windows/
H A DHost.cpp268 auto item_sp = args_array_sp->GetItemAtIndex(i); in ShellExpandArguments()
/llvm-project-15.0.7/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp190 threads_list->GetItemAtIndex(i); in UpdateThreadList()
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-typemaps.swig17 PythonString py_str = list.GetItemAtIndex(i).AsType<PythonString>();
43 PythonString s = list.GetItemAtIndex(i).AsType<PythonString>();
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp368 images_sp->GetAsArray()->GetItemAtIndex(i); in JSONImageInformationIntoImageInfo()
466 segments->GetItemAtIndex(j)->GetAsDictionary(); in JSONImageInformationIntoImageInfo()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Ddecorators.py897 if targets.GetItemAtIndex(i).GetStringValue(99) == target:
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp1171 packet_array->GetItemAtIndex(i)->GetAsDictionary(); in Handle_jModulesInfo()
H A DProcessGDBRemote.cpp1606 thread_infos->GetItemAtIndex(i)->GetAsDictionary(); in GetThreadStopInfoFromJSON()
2512 thread_infos->GetItemAtIndex(i)->GetAsDictionary(); in WillPublicStop()
H A DGDBRemoteCommunicationClient.cpp3902 response_array->GetItemAtIndex(i)->GetAsDictionary())) in GetModulesInfo()
/llvm-project-15.0.7/lldb/source/Target/
H A DThread.cpp1829 StructuredData::ObjectSP message = messages_array->GetItemAtIndex(i); in GetDescription()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp2233 bkpt_array->GetItemAtIndex(i); in HandleOptionArgumentCompletion()
/llvm-project-15.0.7/lldb/source/Host/macosx/objcxx/
H A DHost.mm1440 auto item_sp = args_array_sp->GetItemAtIndex(i);

12