Lines Matching refs:SingletonFactory
138 class SingletonFactory: class
146 SingletonFactory(SingletonFactory &); // not implemented
147 void operator =(SingletonFactory); // not implemented
149 inline SingletonFactory() {} in SingletonFactory() function in __anon99048c590111::SingletonFactory
151 virtual inline ~SingletonFactory() {} in ~SingletonFactory()
164 css::uno::Reference< css::uno::XInterface > SingletonFactory::getSingleton( in getSingleton()
185 xComponent->addEventListener(new SingletonFactory); in getSingleton()
195 void SAL_CALL SingletonFactory::disposing(css::lang::EventObject const &) in disposing()
201 void SingletonFactory::dispose() in dispose()
215 osl::Mutex SingletonFactory::m_aMutex;
216 css::uno::Reference< css::uno::XInterface > SingletonFactory::m_xSingleton;
217 bool SingletonFactory::m_bDisposed = false;
240 return SingletonFactory::getSingleton(rContext); in serviceCreateInstance()