• Home
  • Raw
  • Download

Lines Matching refs:PythonObject

37 PythonObject::PythonObject (const lldb::ScriptInterpreterObjectSP &script_object_sp) :  in PythonObject()  function in PythonObject
45 PythonObject::Dump (Stream &strm) const in Dump()
70 PythonObject::Repr () in Repr()
81 PythonObject::Str () in Str()
96 PythonObject(py_obj) in PythonString()
100 PythonString::PythonString (const PythonObject &object) : in PythonString()
101 PythonObject(object.GetPythonObject()) in PythonString()
106 PythonObject (script_object_sp) in PythonString()
111 PythonObject(PyString_FromString(string)) in PythonString()
116 PythonObject() in PythonString()
128 return PythonObject::Reset(py_obj); in Reset()
130 PythonObject::Reset(NULL); in Reset()
153 PythonObject::Reset(PyString_FromString(string)); in SetString()
161 PythonObject(py_obj) in PythonInteger()
165 PythonInteger::PythonInteger (const PythonObject &object) : in PythonInteger()
166 PythonObject(object.GetPythonObject()) in PythonInteger()
171 PythonObject (script_object_sp) in PythonInteger()
176 PythonObject(PyInt_FromLong(value)) in PythonInteger()
189 return PythonObject::Reset(py_obj); in Reset()
191 PythonObject::Reset(NULL); in Reset()
207 PythonObject::Reset(PyInt_FromLong(value)); in SetInteger()
215 PythonObject(PyList_New(0)) in PythonList()
220 PythonObject(PyList_New(count)) in PythonList()
225 PythonObject(py_obj) in PythonList()
230 PythonList::PythonList (const PythonObject &object) : in PythonList()
231 PythonObject(object.GetPythonObject()) in PythonList()
236 PythonObject (script_object_sp) in PythonList()
248 return PythonObject::Reset(py_obj); in Reset()
250 PythonObject::Reset(NULL); in Reset()
262 PythonObject
266 return PythonObject(PyList_GetItem(m_py_obj, index)); in GetItemAtIndex()
271 PythonList::SetItemAtIndex (uint32_t index, const PythonObject & object) in SetItemAtIndex()
278 PythonList::AppendItem (const PythonObject &object) in AppendItem()
289 PythonObject(PyDict_New()) in PythonDictionary()
294 PythonObject(py_obj) in PythonDictionary()
299 PythonDictionary::PythonDictionary (const PythonObject &object) : in PythonDictionary()
300 PythonObject(object.GetPythonObject()) in PythonDictionary()
305 PythonObject (script_object_sp) in PythonDictionary()
317 return PythonObject::Reset(py_obj); in Reset()
319 PythonObject::Reset(NULL); in Reset()
331 PythonObject
343 PythonObject
347 return PythonObject(PyDict_GetItem(m_py_obj, key.GetPythonObject())); in GetItemForKey()
348 return PythonObject(); in GetItemForKey()
407 PythonObject
418 return PythonObject(value); in GetValueAtPosition()
420 return PythonObject(); in GetValueAtPosition()
424 PythonDictionary::SetItemForKey (const PythonString &key, const PythonObject &value) in SetItemForKey()