Home
last modified time | relevance | path

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

/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonDataObjectsTests.cpp151 dict.SetItemForKey(PythonString("sys"), m_sys_module); in TEST_F()
518 dict.SetItemForKey(keys[i], values[i]); in TEST_F()
543 dict.SetItemForKey(PythonString(string_key0), PythonString(string_value0)); in TEST_F()
544 dict.SetItemForKey(PythonString(string_key1), PythonInteger(int_value1)); in TEST_F()
610 python_dict.SetItemForKey(PythonString(key_name), python_ull_value); in TEST_F()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp689 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); in LeaveSession()
693 sys_module_dict.SetItemForKey(PythonString("stdout"), m_saved_stdout); in LeaveSession()
697 sys_module_dict.SetItemForKey(PythonString("stderr"), m_saved_stderr); in LeaveSession()
729 sys_module_dict.SetItemForKey(PythonString(py_name), new_file.get()); in SetStdHandle()
DPythonDataObjects.h573 void SetItemForKey(const PythonObject &key,
DPythonDataObjects.cpp779 void PythonDictionary::SetItemForKey(const PythonObject &key, in SetItemForKey() function in PythonDictionary