Lines Matching refs:runtime
47 Runtime runtime; in raisePyExceptionWithAny() local
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() argument
122 base = getClass( pDesc->pBaseTypeDescription->aBase.pTypeName, runtime ); in createClass()
134 base = getClass( pDesc->pBaseTypeDescription->aBase.pTypeName, runtime ); 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()
221 sal_Bool isInterfaceClass( const Runtime &runtime, PyObject * obj ) in isInterfaceClass() argument
223 const ClassSet & set = runtime.getImpl()->cargo->interfaceSet; in isInterfaceClass()
227 PyRef getClass( const OUString & name , const Runtime &runtime) in getClass() argument
231 RuntimeCargo *cargo =runtime.getImpl()->cargo; in getClass()
235 ret = createClass( name, runtime ); in getClass()