Lines Matching refs:xLib
2620 uno::Reference< container::XNameContainer > xLib; in VBA_InsertModule() local
2627 aLibAny >>= xLib; in VBA_InsertModule()
2629 if( xLib.is() ) in VBA_InsertModule()
2641 while( xLib->hasByName( genModuleName ) ) in VBA_InsertModule()
2649 uno::Reference< script::vba::XVBAModuleInfo > xVBAModuleInfo( xLib, uno::UNO_QUERY ); in VBA_InsertModule()
2655 xLib->insertByName( genModuleName, aSourceAny ); in VBA_InsertModule()
2666 uno::Reference< container::XNameContainer > xLib; in VBA_DeleteModule() local
2673 aLibAny >>= xLib; in VBA_DeleteModule()
2675 if( xLib.is() ) in VBA_DeleteModule()
2677 uno::Reference< script::vba::XVBAModuleInfo > xVBAModuleInfo( xLib, uno::UNO_QUERY ); in VBA_DeleteModule()
2678 if( xLib->hasByName( sModuleName ) ) in VBA_DeleteModule()
2679 xLib->removeByName( sModuleName ); in VBA_DeleteModule()