Searched defs:PyObject (Results 1 - 2 of 2) sorted by relevance

/external/lldb/include/lldb/Utility/
H A DPythonPointer.h27 typedef PyObject* element_type;
72 operator PyObject* () { return ptr_; }
/external/protobuf/python/google/protobuf/pyext/
H A Dscoped_pyobject_ptr.h43 explicit ScopedPyObjectPtr(PyObject* p = NULL) : ptr_(p) { }
45 // Destructor. If there is a PyObject object, delete it.
53 PyObject* reset(PyObject* p = NULL) {
62 PyObject* release() {
63 PyObject* p = ptr_;
68 operator PyObject*() { return ptr_; }
70 PyObject* operator->() const {
75 PyObject* get() const { return ptr_; }
85 bool operator==(const PyObject*
[all...]

Completed in 84 milliseconds