Home
last modified time | relevance | path

Searched refs:affFile (Results 1 – 16 of 16) sorted by relevance

/dports/editors/texstudio/texstudio-4.1.2/src/
H A Dspellerutility.cpp30 QString affFile = base + ".aff"; in loadDictionary() local
31 if (!QFileInfo(dicFile).exists() || !QFileInfo(affFile).exists()) { in loadDictionary()
32 if (!QFileInfo(affFile).exists()) in loadDictionary()
33 mLastError = tr("Missing .aff file:\n%1").arg(affFile); in loadDictionary()
40 pChecker = new Hunspell(affFile.toLocal8Bit(), dicFile.toLocal8Bit()); in loadDictionary()
231 QString affFile; in isOxtDictionary() local
235 affFile = f; in isOxtDictionary()
241 if (affFile.length() <= 4 || dicFile.length() <= 4) return false; in isOxtDictionary()
242 …if (affFile.left(affFile.length() - 4) != dicFile.left(dicFile.length() - 4)) return false; // dif… in isOxtDictionary()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/spelling/
H A DHunspellDictionaryManager.cpp180 std::string affFile = langId + ".aff"; in dictionaryForLanguageId() local
183 FilePath customLangsAff = customLanguagesDir().completePath(affFile); in dictionaryForLanguageId()
187 return HunspellDictionary(allLanguagesDir().completePath(affFile)); in dictionaryForLanguageId()
189 return HunspellDictionary(coreLanguagesDir_.completePath(affFile)); in dictionaryForLanguageId()
/dports/net-im/licq-qt-gui/licq-f271d55/qt-gui/src/widgets/
H A Dspellchecker.cpp62 QString affFile = dicFile.left(dicFile.lastIndexOf('.')) + ".aff"; in setDictionary() local
63 mySpeller = new Hunspell(affFile.toLatin1(), dicFile.toLatin1()); in setDictionary()
/dports/net-im/licq-icq/licq-f271d55/qt-gui/src/widgets/
H A Dspellchecker.cpp62 QString affFile = dicFile.left(dicFile.lastIndexOf('.')) + ".aff"; in setDictionary() local
63 mySpeller = new Hunspell(affFile.toLatin1(), dicFile.toLatin1()); in setDictionary()
/dports/net-im/licq-osd/licq-f271d55/qt-gui/src/widgets/
H A Dspellchecker.cpp62 QString affFile = dicFile.left(dicFile.lastIndexOf('.')) + ".aff"; in setDictionary() local
63 mySpeller = new Hunspell(affFile.toLatin1(), dicFile.toLatin1()); in setDictionary()
/dports/net-im/licq/licq-f271d55/qt-gui/src/widgets/
H A Dspellchecker.cpp62 QString affFile = dicFile.left(dicFile.lastIndexOf('.')) + ".aff"; in setDictionary() local
63 mySpeller = new Hunspell(affFile.toLatin1(), dicFile.toLatin1()); in setDictionary()
/dports/net-im/licq-jabber/licq-f271d55/qt-gui/src/widgets/
H A Dspellchecker.cpp62 QString affFile = dicFile.left(dicFile.lastIndexOf('.')) + ".aff"; in setDictionary() local
63 mySpeller = new Hunspell(affFile.toLatin1(), dicFile.toLatin1()); in setDictionary()
/dports/lang/spidermonkey60/firefox-60.9.0/extensions/spellcheck/hunspell/glue/
H A DmozHunspell.cpp157 nsIFile *affFile = mDictionaries.GetWeak(nsDependentString(aDictionary)); in SetDictionary() local
158 if (!affFile) return NS_ERROR_FILE_NOT_FOUND; in SetDictionary()
164 nsresult rv = affFile->GetPath(affFileNameU); in SetDictionary()
178 nsresult rv = affFile->GetNativePath(affFileName); in SetDictionary()
/dports/www/firefox-esr/firefox-91.8.0/extensions/spellcheck/hunspell/glue/
H A DmozHunspell.cpp161 nsIURI* affFile = mDictionaries.GetWeak(dict); in SetDictionary() local
162 if (!affFile) { in SetDictionary()
168 nsresult rv = affFile->GetSpec(affFileName); in SetDictionary()
/dports/lang/spidermonkey78/firefox-78.9.0/extensions/spellcheck/hunspell/glue/
H A DmozHunspell.cpp158 nsIURI* affFile = mDictionaries.GetWeak(aDictionary); in SetDictionary() local
159 if (!affFile) { in SetDictionary()
165 nsresult rv = affFile->GetSpec(affFileName); in SetDictionary()
/dports/www/firefox/firefox-99.0/extensions/spellcheck/hunspell/glue/
H A DmozHunspell.cpp163 nsIURI* affFile = mDictionaries.GetWeak(dict); in SetDictionary() local
164 if (!affFile) { in SetDictionary()
170 nsresult rv = affFile->GetSpec(affFileName); in SetDictionary()
/dports/mail/thunderbird/thunderbird-91.8.0/extensions/spellcheck/hunspell/glue/
H A DmozHunspell.cpp161 nsIURI* affFile = mDictionaries.GetWeak(dict); in SetDictionary() local
162 if (!affFile) { in SetDictionary()
168 nsresult rv = affFile->GetSpec(affFileName); in SetDictionary()
/dports/editors/yudit/yudit-3.0.7/stoolkit/syntax/
H A DSHunspellPattern.h63 SString affFile; variable
H A DSHunspellPattern.cpp73 affFile = faff.getName (); in SHunspellPattern()
74 fixFileName (affFile); in SHunspellPattern()
79 affFile.append ((char)0); in SHunspellPattern()
103 hunspell = (*functions.create)(affFile.array (), dicFile.array ()); in SHunspellPattern()
/dports/www/firefox-legacy/firefox-52.8.0esr/extensions/spellcheck/hunspell/glue/
H A DmozHunspell.cpp166 nsIFile* affFile = mDictionaries.GetWeak(nsDependentString(aDictionary)); in SetDictionary() local
167 if (!affFile) in SetDictionary()
177 nsresult rv = affFile->GetNativePath(affFileName); in SetDictionary()
/dports/editors/texworks/texworks-release-0.6.2/src/
H A DTWUtils.cpp435 QFileInfo affFile(dictPath + "/" + language + ".aff"); in getDictionary() local
437 if (affFile.isReadable() && dicFile.isReadable()) { in getDictionary()
438 h = Hunspell_create(affFile.canonicalFilePath().toLocal8Bit().data(), in getDictionary()