Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/tools/tensorflow_builder/config_detector/data/
Dcuda_compute_capability.py227 def print_dict(py_dict): argument
233 for gpu, cc in py_dict.items():
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonDataObjectsTests.cpp476 PyObject *py_dict = PyDict_New(); in TEST_F() local
477 EXPECT_TRUE(PythonDictionary::Check(py_dict)); in TEST_F()
478 PythonDictionary dict(PyRefType::Owned, py_dict); in TEST_F()
481 PyDict_SetItem(py_dict, py_keys[i].get(), py_values[i].get()); in TEST_F()
/external/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig154 PyObject *py_dict = (PyObject*)session_dictionary;
155 if (!PythonDictionary::Check(py_dict))
158 PythonDictionary dict(PyRefType::Borrowed, py_dict);
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp2087 PythonDictionary py_dict = in GetDynamicSettings() local
2090 if (!py_dict) in GetDynamicSettings()
2093 return py_dict.CreateStructuredDictionary(); in GetDynamicSettings()