Lines Matching refs:it

45 …::std::hash_map< ::rtl::OUString, int, ::rtl::OUStringHash >::iterator it = m_aAtomMap.find( rStri…  in getAtom()
46 if( it != m_aAtomMap.end() ) in getAtom()
47 return it->second; in getAtom()
59 …::std::hash_map< ::rtl::OUString, int, ::rtl::OUStringHash >::const_iterator it = m_aAtomMap.begin… in getAll()
62 while( it != m_aAtomMap.end() ) in getAll()
64 aDesc.atom = it->second; in getAll()
65 aDesc.description = it->first; in getAll()
67 ++it; in getAll()
75 …::std::hash_map< ::rtl::OUString, int, ::rtl::OUStringHash >::const_iterator it = m_aAtomMap.begin… in getRecent()
78 while( it != m_aAtomMap.end() ) in getRecent()
80 if( it->second > atom ) in getRecent()
82 aDesc.atom = it->second; in getRecent()
83 aDesc.description = it->first; in getRecent()
86 ++it; in getRecent()
93 …::std::hash_map< int, ::rtl::OUString, ::std::hash< int > >::const_iterator it = m_aStringMap.find… in getString()
95 return it == m_aStringMap.end() ? aEmpty : it->second; in getString()
119 …, AtomProvider*, ::std::hash< int > >::iterator it = m_aAtomLists.begin(); it != m_aAtomLists.end(… in ~MultiAtomProvider()
120 delete it->second; in ~MultiAtomProvider()
126 ::std::hash_map< int, AtomProvider*, ::std::hash< int > >::iterator it = in insertAtomClass()
128 if( it != m_aAtomLists.end() ) in insertAtomClass()
136 ::std::hash_map< int, AtomProvider*, ::std::hash< int > >::iterator it = in getAtom()
138 if( it != m_aAtomLists.end() ) in getAtom()
139 return it->second->getAtom( rString, bCreate ); in getAtom()
152 ::std::hash_map< int, AtomProvider*, ::std::hash< int > >::const_iterator it = in getLastAtom()
155 return it != m_aAtomLists.end() ? it->second->getLastAtom() : INVALID_ATOM; in getLastAtom()
160 ::std::hash_map< int, AtomProvider*, ::std::hash< int > >::const_iterator it = in getRecent()
162 if( it != m_aAtomLists.end() ) in getRecent()
163 it->second->getRecent( atom, atoms ); in getRecent()
170 ::std::hash_map< int, AtomProvider*, ::std::hash< int > >::const_iterator it = in getString()
172 if( it != m_aAtomLists.end() ) in getString()
173 return it->second->getString( atom ); in getString()
181 …::std::hash_map< int, AtomProvider*, ::std::hash< int > >::const_iterator it = m_aAtomLists.find( … in hasAtom()
182 return it != m_aAtomLists.end() ? it->second->hasAtom( atom ) : sal_False; in hasAtom()
187 …::std::hash_map< int, AtomProvider*, ::std::hash< int > >::const_iterator it = m_aAtomLists.find( … in getClass()
189 if( it != m_aAtomLists.end() ) in getClass()
190 it->second->getAll( atoms ); in getClass()
197 …::std::hash_map< int, AtomProvider*, ::std::hash< int > >::const_iterator it = m_aAtomLists.find( … in overrideAtom()
198 if( it == m_aAtomLists.end() ) in overrideAtom()