Lines Matching refs:xContext

90     ServiceImpl0( Reference< XComponentContext > const & xContext ) SAL_THROW( () );
101 ServiceImpl0::ServiceImpl0( Reference< XComponentContext > const & xContext ) SAL_THROW( () ) in ServiceImpl0() argument
102 : m_xContext( xContext ) in ServiceImpl0()
168 inline ServiceImpl1( Reference< XComponentContext > const & xContext ) SAL_THROW( () )
169 : ServiceImpl0( xContext )
191 Reference< XComponentContext > const & xContext ) in ServiceImpl0_create()
194 return (OWeakObject *)new ServiceImpl0( xContext ); in ServiceImpl0_create()
198 Reference< XComponentContext > const & xContext ) in ServiceImpl1_create()
201 return (OWeakObject *)new ServiceImpl1( xContext ); in ServiceImpl1_create()
255 Reference< XComponentContext > xContext( defaultBootstrap_InitialComponentContext() ); in SAL_IMPLEMENT_MAIN() local
256 Reference< lang::XMultiComponentFactory > xMgr( xContext->getServiceManager() ); in SAL_IMPLEMENT_MAIN()
259 xContext->getValueByName( OUSTR("dump_maps") ); in SAL_IMPLEMENT_MAIN()
262 … OSL_VERIFY( xContext->getValueByName( OUSTR("/global-context-properties/TestValue") ) >>= n ); in SAL_IMPLEMENT_MAIN()
266 OSL_VERIFY( !(xContext->getValueByName( OUSTR("/singletons/my_converter") ) >>= x) ); in SAL_IMPLEMENT_MAIN()
267 …OSL_VERIFY( xContext->getValueByName( OUSTR("/singletons/com.sun.star.script.theConverter") ) >>= … in SAL_IMPLEMENT_MAIN()
268 …OSL_VERIFY( xContext->getValueByName( OUSTR("/singletons/com.sun.star.bootstrap.theTestComponent0"… in SAL_IMPLEMENT_MAIN()
277 OUSTR("com.sun.star.registry.ImplementationRegistration"), xContext ), UNO_QUERY ); in SAL_IMPLEMENT_MAIN()
283 …Mgr->createInstanceWithContext( OUSTR("com.sun.star.bootstrap.TestComponent0"), xContext )).is() ); in SAL_IMPLEMENT_MAIN()
284 …Mgr->createInstanceWithContext( OUSTR("com.sun.star.bootstrap.TestComponent1"), xContext )).is() ); in SAL_IMPLEMENT_MAIN()
286 Reference< lang::XComponent > xComp( xContext, UNO_QUERY ); in SAL_IMPLEMENT_MAIN()