Lines Matching refs:PyRef
48 PyRef exc = runtime.any2PyObject( anyExc ); in raisePyExceptionWithAny()
51 PyRef type( getClass( anyExc.getValueType().getTypeName(),runtime ) ); in raisePyExceptionWithAny()
88 static PyRef createClass( const OUString & name, const Runtime &runtime ) in createClass()
116 PyRef base; in createClass()
140 base = PyRef(PyExc_Exception); in createClass()
143 PyRef args( PyTuple_New( 3 ), SAL_NO_ACQUIRE ); in createClass()
145 PyRef pyTypeName = USTR_TO_PYSTR( name /*.replace( '.', '_' )*/ ); in createClass()
147 PyRef bases; in createClass()
151 bases = PyRef( PyTuple_New( 1 ), SAL_NO_ACQUIRE ); in createClass()
157 bases = PyRef( PyTuple_New( 0 ), SAL_NO_ACQUIRE ); in createClass()
164 PyRef ret( in createClass()
177 PyRef ctor = getObjectFromUnoModule( runtime,"_uno_struct__init__" ); in createClass()
178 PyRef setter = getObjectFromUnoModule( runtime,"_uno_struct__setattr__" ); in createClass()
179 PyRef getter = getObjectFromUnoModule( runtime,"_uno_struct__getattr__" ); in createClass()
180 PyRef repr = getObjectFromUnoModule( runtime,"_uno_struct__repr__" ); in createClass()
181 PyRef eq = getObjectFromUnoModule( runtime,"_uno_struct__eq__" ); in createClass()
183 PyRef dir = getObjectFromUnoModule( runtime, "_uno_struct__dir__" ); in createClass()
214 PyRef attr( in isInstanceOfStructOrException()
227 PyRef getClass( const OUString & name , const Runtime &runtime) in getClass()
229 PyRef ret; in getClass()