Home
last modified time | relevance | path

Searched refs:misspelling (Results 1 – 25 of 1415) sorted by relevance

12345678910>>...57

/dports/textproc/enchant2/enchant-2.2.15/tests/dictionary/
H A Denchant_dict_store_replacement_tests.cpp28 static std::string misspelling; member
38 misspelling.clear(); in EnchantDictionaryStoreReplacement_TestFixture()
47 misspelling = std::string(mis, mis_len); in MockDictionaryStoreReplacement()
100 std::string misspelling("helo"); in TEST_FIXTURE() local
108 CHECK_EQUAL(EnchantDictionaryStoreReplacement_TestFixture::misspelling, misspelling); in TEST_FIXTURE()
115 std::string misspelling("helo"); in TEST_FIXTURE() local
123 CHECK_EQUAL(EnchantDictionaryStoreReplacement_TestFixture::misspelling, misspelling); in TEST_FIXTURE()
130 std::string misspelling("helo"); in TEST_FIXTURE() local
213 std::string misspelling("helo1"); in TEST_FIXTURE() local
221 misspelling.resize(misspelling.size()-1); in TEST_FIXTURE()
[all …]
/dports/devel/bmake/bmake/unit-tests/
H A Ddirective-elif.mk25 . info XXX: This misspelling is not detected.
39 . info XXX: This misspelling is not detected.
73 . info XXX: This misspelling is not detected.
82 . info XXX: This misspelling is not detected.
90 . info This misspelling is detected.
101 . info XXX: This misspelling is not detected.
104 . info XXX: This misspelling is not detected.
109 .info What happens on misspelling in a skipped branch?
113 . info XXX: This misspelling is not detected.
116 . info XXX: This misspelling is not detected.
[all …]
H A Ddirective-elif.exp7 make: "directive-elif.mk" line 90: This misspelling is detected.
9 make: "directive-elif.mk" line 109: What happens on misspelling in a skipped branch?
11 make: "directive-elif.mk" line 122: What happens on misspelling in a taken branch?
/dports/textproc/py-spylls/spylls-0.1.6/spylls/hunspell/algo/
H A Dphonet_suggest.py15 def phonet_suggest(misspelling: str, *, dictionary_words: List[dic.Word], table: aff.PhonetTable) -…
40 misspelling = misspelling.lower()
41 misspelling_ph = metaphone(table, misspelling)
55 if abs(len(word.stem) - len(misspelling)) > 3:
59 nscore = ng.root_score(misspelling, word.stem)
63 nscore = max(nscore, ng.root_score(misspelling, variant))
80 guesses2 = [(score + final_score(misspelling, word.lower()), word) for (score, word) in guesses]
H A Dngram_suggest.py29 def ngram_suggest(misspelling: str, *,
68 if abs(len(word.stem) - len(misspelling)) > 4:
74 score = root_score(misspelling, word.stem)
81 score = max(score, root_score(misspelling, variant))
93 threshold = detect_threshold(misspelling)
106 score = rough_affix_score(misspelling, variant)
112 for form in forms_for(root, prefixes, suffixes, similar_to=misspelling):
113 score = rough_affix_score(misspelling, form.lower())
125 …(precise_affix_score(misspelling, compared.lower(), fact, base=score, has_phonetic=has_phonetic), …
/dports/devel/arcanist-lib/arcanist-b2e715f/src/lint/linter/
H A DArcanistSpellingLinter.php77 public function addExactWordRule($misspelling, $correction) { argument
80 array($misspelling => $correction));
84 public function addPartialWordRule($misspelling, $correction) { argument
87 array($misspelling => $correction));
113 foreach ($this->exactWordRules as $misspelling => $correction) {
114 $this->checkExactWord($path, $misspelling, $correction);
117 foreach ($this->partialWordRules as $misspelling => $correction) {
118 $this->checkPartialWord($path, $misspelling, $correction);
/dports/devel/arcanist/arcanist-b2e715f/src/lint/linter/
H A DArcanistSpellingLinter.php77 public function addExactWordRule($misspelling, $correction) { argument
80 array($misspelling => $correction));
84 public function addPartialWordRule($misspelling, $correction) { argument
87 array($misspelling => $correction));
113 foreach ($this->exactWordRules as $misspelling => $correction) {
114 $this->checkExactWord($path, $misspelling, $correction);
117 foreach ($this->partialWordRules as $misspelling => $correction) {
118 $this->checkPartialWord($path, $misspelling, $correction);
/dports/textproc/kf5-sonnet/sonnet-5.89.0/src/core/
H A Dbackgroundchecker.cpp40 Q_EMIT misspelling(word.toString(), word.position() + sentenceOffset); in checkNext() local
71 connect(d, &BackgroundCheckerPrivate::misspelling, this, &BackgroundChecker::misspelling); in BackgroundChecker()
80 connect(d, &BackgroundCheckerPrivate::misspelling, this, &BackgroundChecker::misspelling); in BackgroundChecker()
H A Dbackgroundchecker_p.h44 void misspelling(const QString &, int);
H A Dbackgroundchecker.h112 void misspelling(const QString &word, int start);
/dports/textproc/codespell/codespell-2.1.0/codespell_lib/
H A D_codespell.py507 def ask_for_word_fix(line, wrongword, misspelling, interactivity): argument
509 return misspelling.fix, fix_case(wrongword, misspelling.data)
511 if misspelling.fix and interactivity & 1:
513 fixword = fix_case(wrongword, misspelling.data)
524 misspelling.fix = False
525 misspelling.fixword = ''
527 elif (interactivity & 2) and not misspelling.reason:
532 opt = list(map(lambda x: x.strip(), misspelling.data.split(',')))
552 misspelling.fix = True
553 misspelling.data = r
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/spellcheck/browser/
H A Dspelling_service_client.cc272 base::DictionaryValue* misspelling = nullptr; in ParseResponse() local
273 if (!misspellings->GetDictionary(i, &misspelling)) in ParseResponse()
279 if (!misspelling->GetInteger("charStart", &start) || in ParseResponse()
280 !misspelling->GetInteger("charLength", &length) || in ParseResponse()
281 !misspelling->GetList("suggestions", &suggestions)) { in ParseResponse()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/spellcheck/browser/
H A Dspelling_service_client.cc272 base::DictionaryValue* misspelling = nullptr; in ParseResponse() local
273 if (!misspellings->GetDictionary(i, &misspelling)) in ParseResponse()
279 if (!misspelling->GetInteger("charStart", &start) || in ParseResponse()
280 !misspelling->GetInteger("charLength", &length) || in ParseResponse()
281 !misspelling->GetList("suggestions", &suggestions)) { in ParseResponse()
/dports/biology/p5-BioPerl-Run/BioPerl-Run-1.007003/t/data/taxdump/
H A Dnames.dmp48 9598 | Chimpansee troglodytes | | misspelling |
128 10090 | mice C57BL/6xCBA/CaJ hybrid | | misspelling |
140 10116 | Rattus norvegicus8 | | misspelling |
141 10116 | Rattus norwegicus | | misspelling |
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/golangci/misspell/
H A DREADME.md39 your.txt:42:10 found "langauge" a misspelling of "language"
50 Exit with 2 if misspelling found
63 -q Do not emit misspelling output
99 # ^ File is rewritten only if a misspelling is found
109 important.txt:10:20 found "colour" a misspelling of "color"
116 stdin:1:3:found "favorite color" a misspelling of "favourite colour"
159 stdin:1:0:found "zeebra" a misspelling of "zebra"
313 ### What are other misspelling correctors and what's wrong with them?
315 Some other misspelling correctors:
323 * slow, all of the above check one misspelling at a time (i.e. linear) using regexps
/dports/security/vault/vault-1.8.2/vendor/github.com/client9/misspell/
H A DREADME.md39 your.txt:42:10 found "langauge" a misspelling of "language"
50 Exit with 2 if misspelling found
63 -q Do not emit misspelling output
99 # ^ File is rewritten only if a misspelling is found
109 important.txt:10:20 found "colour" a misspelling of "color"
116 stdin:1:3:found "favorite color" a misspelling of "favourite colour"
159 stdin:1:0:found "zeebra" a misspelling of "zebra"
313 ### What are other misspelling correctors and what's wrong with them?
315 Some other misspelling correctors:
323 * slow, all of the above check one misspelling at a time (i.e. linear) using regexps
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/kunwardeep/paralleltest/tools/vendor/github.com/golangci/misspell/
H A DREADME.md39 your.txt:42:10 found "langauge" a misspelling of "language"
50 Exit with 2 if misspelling found
63 -q Do not emit misspelling output
99 # ^ File is rewritten only if a misspelling is found
109 important.txt:10:20 found "colour" a misspelling of "color"
116 stdin:1:3:found "favorite color" a misspelling of "favourite colour"
159 stdin:1:0:found "zeebra" a misspelling of "zebra"
313 ### What are other misspelling correctors and what's wrong with them?
315 Some other misspelling correctors:
323 * slow, all of the above check one misspelling at a time (i.e. linear) using regexps
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/github.com/golangci/misspell/
H A DREADME.md39 your.txt:42:10 found "langauge" a misspelling of "language"
50 Exit with 2 if misspelling found
63 -q Do not emit misspelling output
99 # ^ File is rewritten only if a misspelling is found
109 important.txt:10:20 found "colour" a misspelling of "color"
116 stdin:1:3:found "favorite color" a misspelling of "favourite colour"
159 stdin:1:0:found "zeebra" a misspelling of "zebra"
313 ### What are other misspelling correctors and what's wrong with them?
315 Some other misspelling correctors:
323 * slow, all of the above check one misspelling at a time (i.e. linear) using regexps
/dports/lang/spidermonkey60/firefox-60.9.0/extensions/spellcheck/idl/
H A DmozIPersonalDictionary.idl64 * Add a misspelling to the list of corrections
69 * Remove a misspelling from the list of corrections
/dports/www/firefox-legacy/firefox-52.8.0esr/extensions/spellcheck/idl/
H A DmozIPersonalDictionary.idl64 * Add a misspelling to the list of corrections
69 * Remove a misspelling from the list of corrections
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/spellcheck/
H A Dspellcheckdialog.cpp109 … connect(m_sonnetDialog, &SpellCheckBar::misspelling, this, &KateSpellCheckDialog::misspelling); in spellcheck()
150 void KateSpellCheckDialog::misspelling(const QString &word, int pos) in misspelling() function in KateSpellCheckDialog
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/editing/spellcheck/
H A Dspell_checker.cc640 TextCheckingResult misspelling; in FindMisspellings() local
641 misspelling.decoration = kTextDecorationTypeSpelling; in FindMisspellings()
642 misspelling.location = word_start + misspelling_location; in FindMisspellings()
643 misspelling.length = misspelling_length; in FindMisspellings()
644 results.push_back(misspelling); in FindMisspellings()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/editing/spellcheck/
H A Dspell_checker.cc646 TextCheckingResult misspelling; in FindMisspellings() local
647 misspelling.decoration = kTextDecorationTypeSpelling; in FindMisspellings()
648 misspelling.location = word_start + misspelling_location; in FindMisspellings()
649 misspelling.length = misspelling_length; in FindMisspellings()
650 results.push_back(misspelling); in FindMisspellings()
/dports/textproc/kf5-sonnet/sonnet-5.89.0/tests/
H A Dbackgroundtest.cpp127 connect(m_checker, SIGNAL(misspelling(QString, int)), SLOT(slotMisspelling(QString, int))); in BackgroundTest()
/dports/devel/p5-Sort-Array/Sort-Array-0.26/
H A DChanges14 Some misspelling corrected.

12345678910>>...57