Home
last modified time | relevance | path

Searched refs:h_it (Results 1 – 4 of 4) sorted by relevance

/trunk/main/cui/source/customize/
H A Dmacropg.cxx350 EventsHash::iterator h_it = m_appEventsHash.begin(); in FillItemSet() local
351 for ( ; h_it != h_itEnd; ++h_it ) in FillItemSet()
353 eventName = h_it->first; in FillItemSet()
367 EventsHash::iterator h_it = m_docEventsHash.begin(); in FillItemSet() local
368 for ( ; h_it != h_itEnd; ++h_it ) in FillItemSet()
370 eventName = h_it->first; in FillItemSet()
412 EventsHash::iterator h_it = m_appEventsHash.begin(); in Reset() local
413 for ( ; h_it != h_itEnd; ++h_it ) in Reset()
415 h_it->second.second = sEmpty; in Reset()
421 EventsHash::iterator h_it = m_docEventsHash.begin(); in Reset() local
[all …]
/trunk/main/scripting/source/storage/
H A DScriptStorage.cxx209 ScriptLanguages_hash::iterator h_it = mh_scriptLangs->find( fileExtension ); in initialize() local
210 if ( h_it != mh_scriptLangs->end() ) in initialize()
490 ScriptData_hash::iterator h_it = mh_implementations.find( it->language ); in updateMaps() local
492 if ( h_it == mh_implementations.end() ) in updateMaps()
515 h_it->second[ it->functionname ] = *it; in updateMaps()
730 ScriptData_hash::iterator h_it = mh_implementations.begin(); in getImplementations() local
731 if ( h_it == h_itEnd ) in getImplementations()
738 h_it = mh_implementations.find( scriptURI.getLanguage() ); in getImplementations()
740 if ( h_it == h_itEnd ) in getImplementations()
749 ScriptFunction_hash::const_iterator it_datas = h_it->second.find( in getImplementations()
[all …]
/trunk/main/scripting/source/provider/
H A DProviderCache.cxx76 ProviderDetails_hash::iterator h_it = m_hProviderDetailsCache.find( providerName ); in getProvider() local
77 if ( h_it != m_hProviderDetailsCache.end() ) in getProvider()
79 if ( h_it->second.provider.is() ) in getProvider()
81 provider = h_it->second.provider; in getProvider()
86 provider = createProvider( h_it->second ); in getProvider()
101 ProviderDetails_hash::iterator h_it = m_hProviderDetailsCache.begin(); in getAllProviders() local
107 for ( index = 0; h_it != h_itEnd; ++h_it, index++ ) in getAllProviders()
109 Reference< provider::XScriptProvider > xScriptProvider = h_it->second.provider; in getAllProviders()
119 xScriptProvider = createProvider( h_it->second ); in getAllProviders()
H A DBrowseNodeFactoryImpl.cxx279 BrowseNodeAggregatorHash::iterator h_it = in loadChildNodes() local
282 if ( h_it != m_hBNA->end() ) in loadChildNodes()
284 … BrowseNodeAggregator* bna = static_cast< BrowseNodeAggregator* >( h_it->second.get() ); in loadChildNodes()