Home
last modified time | relevance | path

Searched refs:SetItemAtIndex (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonDataObjectsTests.cpp299 list.SetItemAtIndex(i, list_items[i]); in TEST_F()
383 tuple.SetItemAtIndex(0, int_value); in TEST_F()
384 tuple.SetItemAtIndex(1, string_value); in TEST_F()
385 tuple.SetItemAtIndex(2, none_value); in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp530 void PythonList::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex() function in PythonList
574 SetItemAtIndex(idx, object); in PythonTuple()
586 SetItemAtIndex(idx, object); in PythonTuple()
609 void PythonTuple::SetItemAtIndex(uint32_t index, const PythonObject &object) { in SetItemAtIndex() function in PythonTuple
H A DPythonDataObjects.h502 void SetItemAtIndex(uint32_t index, const PythonObject &object);
524 void SetItemAtIndex(uint32_t index, const PythonObject &object);
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-typemaps.swig65 list.SetItemAtIndex(i, PythonString($1[i]));