Home
last modified time | relevance | path

Searched refs:ScopedPythonObject (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h44 template <typename T> class ScopedPythonObject : PythonObject {
46 ScopedPythonObject(T *sb, swig_type_info *info) in ScopedPythonObject() function
48 ~ScopedPythonObject() { in ~ScopedPythonObject()
52 ScopedPythonObject(ScopedPythonObject &&rhs) in ScopedPythonObject() function
54 ScopedPythonObject(const ScopedPythonObject &) = delete;
55 ScopedPythonObject &operator=(const ScopedPythonObject &) = delete;
56 ScopedPythonObject &operator=(ScopedPythonObject &&) = delete;
84 python::ScopedPythonObject<lldb::SBCommandReturnObject>
86 python::ScopedPythonObject<lldb::SBEvent> ToSWIGWrapper(Event *event);
/openbsd-src/gnu/llvm/lldb/bindings/python/
H A Dpython-swigsafecast.swig96 ScopedPythonObject<lldb::SBCommandReturnObject>
98 return ScopedPythonObject<lldb::SBCommandReturnObject>(
103 ScopedPythonObject<lldb::SBEvent> ToSWIGWrapper(Event *event) {
104 return ScopedPythonObject<lldb::SBEvent>(new lldb::SBEvent(event),
H A Dpython-wrapper.swig346 ScopedPythonObject<SBEvent> event_arg = ToSWIGWrapper(event);