Lines Matching refs:aName
266 void SAL_CALL GlobalEventConfig_Impl::replaceByName( const OUString& aName, const Any& aElement ) t… in replaceByName() argument
282 m_eventBindingHash[ aName ] = macroURL; in replaceByName()
286 Any SAL_CALL GlobalEventConfig_Impl::getByName( const OUString& aName ) throw (container::NoSuchEle… in getByName() argument
293 EventBindingHash::const_iterator it = m_eventBindingHash.find( aName ); in getByName()
302 m_supportedEvents.begin(), m_supportedEvents.end(), aName ); in getByName()
304 throw container::NoSuchElementException( aName, NULL ); in getByName()
318 sal_Bool SAL_CALL GlobalEventConfig_Impl::hasByName( const OUString& aName ) throw (RuntimeExceptio… in hasByName() argument
320 if ( m_eventBindingHash.find( aName ) != m_eventBindingHash.end() ) in hasByName()
325 m_supportedEvents.begin(), m_supportedEvents.end(), aName ); in hasByName()
392 void SAL_CALL GlobalEventConfig::replaceByName( const OUString& aName, const Any& aElement ) throw … in replaceByName() argument
395 m_pImpl->replaceByName( aName, aElement ); in replaceByName()
397 Any SAL_CALL GlobalEventConfig::getByName( const OUString& aName ) throw (container::NoSuchElementE… in getByName() argument
400 return m_pImpl->getByName( aName ); in getByName()
407 sal_Bool SAL_CALL GlobalEventConfig::hasByName( const OUString& aName ) throw (RuntimeException) in hasByName() argument
410 return m_pImpl->hasByName( aName ); in hasByName()