Lines Matching refs:xLib
2616 uno::Reference< container::XNameContainer > xLib; in VBA_InsertModule() local
2623 aLibAny >>= xLib; in VBA_InsertModule()
2625 if( xLib.is() ) in VBA_InsertModule()
2637 while( xLib->hasByName( genModuleName ) ) in VBA_InsertModule()
2645 uno::Reference< script::vba::XVBAModuleInfo > xVBAModuleInfo( xLib, uno::UNO_QUERY ); in VBA_InsertModule()
2651 xLib->insertByName( genModuleName, aSourceAny ); in VBA_InsertModule()
2662 uno::Reference< container::XNameContainer > xLib; in VBA_DeleteModule() local
2669 aLibAny >>= xLib; in VBA_DeleteModule()
2671 if( xLib.is() ) in VBA_DeleteModule()
2673 uno::Reference< script::vba::XVBAModuleInfo > xVBAModuleInfo( xLib, uno::UNO_QUERY ); in VBA_DeleteModule()
2674 if( xLib->hasByName( sModuleName ) ) in VBA_DeleteModule()
2675 xLib->removeByName( sModuleName ); in VBA_DeleteModule()