Home
last modified time | relevance | path

Searched refs:py_obj (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Interpreter/
DPythonDataObjects.cpp95 PythonString::PythonString (PyObject *py_obj) : in PythonString() argument
96 PythonObject(py_obj) in PythonString()
125 PythonString::Reset (PyObject *py_obj) in Reset() argument
127 if (py_obj && PyString_Check(py_obj)) in Reset()
128 return PythonObject::Reset(py_obj); in Reset()
131 return py_obj == NULL; in Reset()
160 PythonInteger::PythonInteger (PyObject *py_obj) : in PythonInteger() argument
161 PythonObject(py_obj) in PythonInteger()
186 PythonInteger::Reset (PyObject *py_obj) in Reset() argument
188 if (py_obj && PyInt_Check(py_obj)) in Reset()
[all …]
/external/lldb/include/lldb/Interpreter/
DPythonDataObjects.h38 PythonObject (PyObject* py_obj) : in PythonObject() argument
41 Reset (py_obj); in PythonObject()
73 Reset (PyObject* py_obj = NULL)
75 if (py_obj != m_py_obj)
78 m_py_obj = py_obj;
129 Reset (PyObject* py_obj = NULL);
146 PythonInteger (PyObject* py_obj);
153 Reset (PyObject* py_obj = NULL);
167 PythonList (PyObject* py_obj);
174 Reset (PyObject* py_obj = NULL);