Lines Matching refs:h_it

209         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()
751 ScriptFunction_hash::const_iterator it_datas_end = h_it->second.end(); in getImplementations()
780 ScriptData_hash::iterator h_it = mh_implementations.begin(); in getAllImplementations() local
781 if ( h_it == h_itEnd ) in getAllImplementations()
790 for ( sal_Int32 count = 0; h_it != h_itEnd; ++h_it ) in getAllImplementations()
792 results.realloc( h_it->second.size() + count ); in getAllImplementations()
794 ::rtl::OUStringToOString( h_it->first, in getAllImplementations()
796 ScriptFunction_hash::const_iterator it_sfh = h_it->second.begin(); in getAllImplementations()
797 ScriptFunction_hash::const_iterator it_sfh_end = h_it->second.end(); in getAllImplementations()
798 OSL_TRACE( "Adding %d to sequence of impls ", h_it->second.size() ); in getAllImplementations()