Lines Matching refs:rTerm
241 DictionaryEntry* DictionaryList::getTermEntry( const rtl::OUString& rTerm ) const in getTermEntry()
247 if( pE && rTerm.equals( pE->m_aTerm ) ) in getTermEntry()
253 bool DictionaryList::hasTerm( const rtl::OUString& rTerm ) const in hasTerm()
255 return getTermEntry(rTerm) !=0 ; in hasTerm()
258 void DictionaryList::addEntry( const rtl::OUString& rTerm, const rtl::OUString& rMapping in addEntry() argument
261 if( hasTerm( rTerm ) ) in addEntry()
264 …DictionaryEntry* pEntry = new DictionaryEntry( rTerm, rMapping, nConversionPropertyType, sal_True … in addEntry()
285 sal_uIntPtr DictionaryList::deleteEntries( const rtl::OUString& rTerm ) in deleteEntries() argument
291 if( rTerm.equals( pCurEntry->m_aTerm ) ) in deleteEntries()
430 DictionaryEntry::DictionaryEntry( const rtl::OUString& rTerm, const rtl::OUString& rMapping in DictionaryEntry() argument
433 : m_aTerm( rTerm ) in DictionaryEntry()