Lines Matching refs:rWord
233 sal_Int16 MacSpellChecker::GetSpellFailure( const OUString &rWord, const Locale &rLocale ) in GetSpellFailure() argument
244 OUStringBuffer rBuf(rWord); in GetSpellFailure()
294 MacSpellChecker::isValid( const OUString& rWord, const Locale& rLocale, in isValid() argument
300 if (rLocale == Locale() || !rWord.getLength()) in isValid()
320 sal_Int16 nFailure = GetSpellFailure( rWord, rLocale ); in isValid()
325 if ( (!rHelper.IsSpellUpperCase() && IsUpper( rWord, nLang )) in isValid()
326 || (!rHelper.IsSpellWithDigits() && HasDigits( rWord )) in isValid()
338 MacSpellChecker::GetProposals( const OUString &rWord, const Locale &rLocale ) in GetProposals() argument
352 OUStringBuffer rBuf(rWord); in GetProposals()
395 String aTmp(rWord); in GetProposals()
408 MacSpellChecker::spell( const OUString& rWord, const Locale& rLocale, in spell() argument
414 if (rLocale == Locale() || !rWord.getLength()) in spell()
425 if (!isValid( rWord, rLocale, rProperties )) in spell()
427 xAlt = GetProposals( rWord, rLocale ); in spell()