Lines Matching refs:Reference

67 	InvocationToAllListenerMapper( const Reference< XIdlClass >& ListenerType, 
68 const Reference< XAllListener >& AllListener, const Any& Helper );
71 …virtual Reference< XIntrospectionAccess > SAL_CALL getIntrospection(void) throw( RuntimeException …
81 Reference< XIdlReflection > m_xCoreReflection;
82 Reference< XAllListener > m_xAllListener;
83 Reference< XIdlClass > m_xListenerType;
89 Reference< XInterface > createAllListenerAdapter in createAllListenerAdapter()
91 const Reference< XInvocationAdapterFactory >& xInvocationAdapterFactory, in createAllListenerAdapter()
92 const Reference< XIdlClass >& xListenerType, in createAllListenerAdapter()
93 const Reference< XAllListener >& xListener, in createAllListenerAdapter()
97 Reference< XInterface > xAdapter; in createAllListenerAdapter()
100 Reference< XInvocation > xInvocationToAllListenerMapper = in createAllListenerAdapter()
112 …( const Reference< XIdlClass >& ListenerType, const Reference< XAllListener >& AllListener, const … in InvocationToAllListenerMapper()
120 Reference< XIntrospectionAccess > SAL_CALL InvocationToAllListenerMapper::getIntrospection(void) in getIntrospection()
123 return Reference< XIntrospectionAccess >(); in getIntrospection()
135 Reference< XIdlMethod > xMethod = m_xListenerType->getMethod( FunctionName ); in invoke()
139 Reference< XIdlClass > xReturnType = xMethod->getReturnType(); in invoke()
140 Sequence< Reference< XIdlClass > > aExceptionSeq = xMethod->getExceptionTypes(); in invoke()
195 Reference< XIdlMethod > xMethod = m_xListenerType->getMethod( Name ); in hasMethod()
203 Reference< XIdlField > xField = m_xListenerType->getField( Name ); in hasProperty()
214 EventAttacherImpl( const Reference< XMultiServiceFactory >& );
229 …virtual Reference< XEventListener > SAL_CALL attachListener(const Reference< XInterface >& xObject…
230 const Reference< XAllListener >& AllListener, const Any& Helper,
233 …virtual Reference< XEventListener > SAL_CALL attachSingleEventListener(const Reference< XInterface…
234 const Reference< XAllListener >& AllListener, const Any& Helper,
238 virtual void SAL_CALL removeListener(const Reference< XInterface >& xObject,
240 const Reference< XEventListener >& aToRemoveListener)
244 Reference< XTypeConverter > getConverter() throw( Exception );
249 Reference< XMultiServiceFactory > m_xSMgr;
252 Reference< XIntrospection > m_xIntrospection;
253 Reference< XIdlReflection > m_xReflection;
254 Reference< XTypeConverter > m_xConverter;
255 Reference< XInvocationAdapterFactory > m_xInvocationAdapterFactory;
258 Reference< XIntrospection > getIntrospection() throw( Exception );
259 Reference< XIdlReflection > getReflection() throw( Exception );
260 Reference< XInvocationAdapterFactory > getInvocationAdapterService() throw( Exception );
265 EventAttacherImpl::EventAttacherImpl( const Reference< XMultiServiceFactory >& rSMgr ) in EventAttacherImpl()
276 Reference< XInterface > SAL_CALL EventAttacherImpl_CreateInstance( const Reference< XMultiServiceFa… in EventAttacherImpl_CreateInstance()
278 Reference< XInterface > xRet; in EventAttacherImpl_CreateInstance()
283 xRet = Reference<XInterface>::query(pEventAttacher); in EventAttacherImpl_CreateInstance()
333 Reference< XInvocationAdapterFactory > xALAS; in initialize()
341 Reference< XIntrospection > xI; in initialize()
349 Reference< XIdlReflection > xIdlR; in initialize()
357 Reference< XTypeConverter > xC; in initialize()
373 Reference< XIntrospection > EventAttacherImpl::getIntrospection() throw( Exception ) in getIntrospection()
379Reference< XInterface > xIFace( m_xSMgr->createInstance( rtl::OUString::createFromAscii("com.sun.s… in getIntrospection()
380 m_xIntrospection = Reference< XIntrospection >( xIFace, UNO_QUERY ); in getIntrospection()
387 Reference< XIdlReflection > EventAttacherImpl::getReflection() throw( Exception ) in getReflection()
393Reference< XInterface > xIFace( m_xSMgr->createInstance( rtl::OUString::createFromAscii("com.sun.s… in getReflection()
394 m_xReflection = Reference< XIdlReflection >( xIFace, UNO_QUERY); in getReflection()
401 Reference< XInvocationAdapterFactory > EventAttacherImpl::getInvocationAdapterService() throw( Exce… in getInvocationAdapterService()
407Reference< XInterface > xIFace( m_xSMgr->createInstance( rtl::OUString::createFromAscii("com.sun.s… in getInvocationAdapterService()
408 m_xInvocationAdapterFactory = Reference< XInvocationAdapterFactory >( xIFace, UNO_QUERY ); in getInvocationAdapterService()
416 Reference< XTypeConverter > EventAttacherImpl::getConverter() throw( Exception ) in getConverter()
422Reference< XInterface > xIFace( m_xSMgr->createInstance( rtl::OUString::createFromAscii("com.sun.s… in getConverter()
423 m_xConverter = Reference< XTypeConverter >( xIFace, UNO_QUERY ); in getConverter()
437 const Reference< XAllListener >& AllListener_ );
452 Reference< XInterface > m_xEAHold;
454 Reference< XAllListener > m_AllListener;
459 const Reference< XAllListener >& AllListener_ ) in FilterAllListenerImpl()
488 rRet <<= Reference< XInterface >(); in convertToEventReturn()
513 Reference< XTypeConverter > xConverter = m_pEA->getConverter(); in convertToEventReturn()
535 Reference< XIdlClass > xListenerType = m_pEA->getReflection()-> in approveFiring()
537 Reference< XIdlMethod > xMeth = xListenerType->getMethod( Event.MethodName ); in approveFiring()
540 Reference< XIdlClass > xRetType = xMeth->getReturnType(); in approveFiring()
547 …throw InvocationTargetException( OUString(), Reference< XInterface >(), Any(&e, ::getCppuType( (Ca… in approveFiring()
562 Reference< XEventListener > EventAttacherImpl::attachListener in attachListener()
564 const Reference< XInterface >& xObject, in attachListener()
565 const Reference< XAllListener >& AllListener, in attachListener()
575 Reference< XEventListener > xRet = NULL; in attachListener()
578 Reference< XInvocationAdapterFactory > xInvocationAdapterFactory = getInvocationAdapterService(); in attachListener()
583 Reference< XIdlReflection > xReflection = getReflection(); in attachListener()
594 Reference< XIntrospection > xIntrospection = getIntrospection(); in attachListener()
599 Any aObjAny( &xObject, ::getCppuType( (const Reference< XInterface > *)0) ); in attachListener()
601 Reference< XIntrospectionAccess > xAccess = xIntrospection->inspect( aObjAny ); in attachListener()
621 Sequence< Reference< XIdlMethod > > aMethodSeq = xAccess->getMethods( MethodConcept::LISTENER ); in attachListener()
623 const Reference< XIdlMethod >* pMethods = aMethodSeq.getConstArray(); in attachListener()
628 const Reference< XIdlMethod >& rxMethod = pMethods[i]; in attachListener()
635 Sequence< Reference< XIdlClass > > params = rxMethod->getParameterTypes(); in attachListener()
638 Reference< XIdlClass > xListenerType; in attachListener()
645 Reference< XInterface > xAdapter = createAllListenerAdapter in attachListener()
650 xRet = Reference< XEventListener >( xAdapter, UNO_QUERY ); in attachListener()
674 Reference< XIdlClass > xParamClass = params.getConstArray()[0]; in attachListener()
704 Reference< XEventListener > EventAttacherImpl::attachSingleEventListener in attachSingleEventListener()
706 const Reference< XInterface >& xObject, in attachSingleEventListener()
707 const Reference< XAllListener >& AllListener, in attachSingleEventListener()
716 Reference< XAllListener > aFilterListener = (XAllListener*) in attachSingleEventListener()
724 const Reference< XInterface >& xObject, in removeListener()
727 const Reference< XEventListener >& aToRemoveListener in removeListener()
735 Reference< XIdlReflection > xReflection = getReflection(); in removeListener()
746 Reference< XIntrospection > xIntrospection = getIntrospection(); in removeListener()
751 Any aObjAny( &xObject, ::getCppuType( (const Reference< XInterface > *)0) ); in removeListener()
752 Reference< XIntrospectionAccess > xAccess = xIntrospection->inspect( aObjAny ); in removeListener()
772 Sequence< Reference< XIdlMethod > > aMethodSeq = xAccess->getMethods( MethodConcept::LISTENER ); in removeListener()
774 const Reference< XIdlMethod >* pMethods = aMethodSeq.getConstArray(); in removeListener()
778 const Reference< XIdlMethod >& rxMethod = pMethods[i]; in removeListener()
783 Sequence< Reference< XIdlClass > > params = rxMethod->getParameterTypes(); in removeListener()
807 Reference< XIdlClass > xParamClass = params.getConstArray()[0]; in removeListener()
848 Reference< XSingleServiceFactory > xFactory( createOneInstanceFactory( in component_getFactory()