Home
last modified time | relevance | path

Searched refs:StopWords (Results 1 – 25 of 582) sorted by relevance

12345678910>>...24

/dports/textproc/p5-Lingua-StopWords/Lingua-StopWords-0.12/
H A DMETA.yml16 name: Lingua-StopWords
26 Lingua::StopWords:
29 Lingua::StopWords::DA:
32 Lingua::StopWords::DE:
35 Lingua::StopWords::EN:
38 Lingua::StopWords::ES:
41 Lingua::StopWords::FI:
44 Lingua::StopWords::FR:
47 Lingua::StopWords::HU:
50 Lingua::StopWords::ID:
[all …]
H A DMANIFEST13 lib/Lingua/StopWords.pm
14 lib/Lingua/StopWords/DA.pm
15 lib/Lingua/StopWords/DE.pm
16 lib/Lingua/StopWords/EN.pm
17 lib/Lingua/StopWords/ES.pm
18 lib/Lingua/StopWords/FI.pm
19 lib/Lingua/StopWords/FR.pm
20 lib/Lingua/StopWords/HU.pm
21 lib/Lingua/StopWords/ID.pm
22 lib/Lingua/StopWords/IT.pm
[all …]
H A DREADME3 Lingua::StopWords - Stop words for several languages.
7 use Lingua::StopWords qw( getStopWords );
84 Lingua::EN::StopWords provides a different stoplist for English.
88 https://github.com/wollmers/Lingua-StopWords
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/fts/
H A Dstop_words.cpp48 StringMap<std::shared_ptr<StopWords>> StopWordsMap;
49 StopWords empty;
53 StopWords::StopWords() {} in StopWords() function in mongo::fts::StopWords
55 StopWords::StopWords(const std::set<std::string>& words) { in StopWords() function in mongo::fts::StopWords
60 const StopWords* StopWords::getStopWords(const FTSLanguage* language) { in getStopWords()
68 MONGO_INITIALIZER(StopWords)(InitializerContext* context) { in MONGO_INITIALIZER() argument
72 StopWordsMap[i->first].reset(new StopWords(i->second)); in MONGO_INITIALIZER()
H A Dstop_words.h46 class StopWords {
47 MONGO_DISALLOW_COPYING(StopWords);
50 StopWords();
51 StopWords(const std::set<std::string>& words);
61 static const StopWords* getStopWords(const FTSLanguage* language);
H A Dstop_words_test.cpp43 const StopWords* englishStopWords = StopWords::getStopWords(&languageEnglishV2); in TEST()
H A Dfts_basic_tokenizer.h43 class StopWords; variable
76 const StopWords* const _stopWords;
H A Dfts_unicode_tokenizer.h44 class StopWords; variable
80 const StopWords* const _stopWords;
/dports/textproc/p5-Lingua-StopWords/Lingua-StopWords-0.12/t/
H A D1-basic.t5 use_ok('Lingua::StopWords');
6 use_ok('Lingua::StopWords::EN');
7 use_ok('Lingua::StopWords::FR');
10 my $wordlist = Lingua::StopWords::getStopWords('en');
15 my $wordlist3 = Lingua::StopWords::getStopWords('xx');
18 my $wordlist1 = Lingua::StopWords::getStopWords('fr');
19 my $wordlist2 = Lingua::StopWords::FR::getStopWords();
H A D2-utf8.t16 use_ok('Lingua::StopWords');
40 my $stoplist = Lingua::StopWords::getStopWords( $language, 'UTF-8' );
50 $stoplist = Lingua::StopWords::getStopWords($language);
/dports/devel/elixir-excoveralls/excoveralls-0.14.4/test/
H A Dstop_words_test.exs3 alias ExCoveralls.StopWords
13 info = StopWords.filter(@source_info, ["defmodule", "end"]) |> Enum.at(0)
19 info = StopWords.filter(@source_info, ["defmodule", "end", "def"]) |> Enum.at(0)
25 info = StopWords.filter(@source_info, [~r/^def/]) |> Enum.at(0)
31 info = StopWords.filter(@source_info) |> Enum.at(0)
/dports/www/moodle310/moodle/lib/mlbackend/php/phpml/src/Phpml/FeatureExtraction/StopWords/
H A DFrench.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class French extends StopWords
H A DPolish.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class Polish extends StopWords
H A DEnglish.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class English extends StopWords
/dports/www/moodle311/moodle/lib/mlbackend/php/phpml/src/Phpml/FeatureExtraction/StopWords/
H A DPolish.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class Polish extends StopWords
H A DFrench.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class French extends StopWords
H A DEnglish.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class English extends StopWords
/dports/www/moodle39/moodle/lib/mlbackend/php/phpml/src/Phpml/FeatureExtraction/StopWords/
H A DPolish.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class Polish extends StopWords
H A DEnglish.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class English extends StopWords
H A DFrench.php5 namespace Phpml\FeatureExtraction\StopWords;
7 use Phpml\FeatureExtraction\StopWords; alias
9 final class French extends StopWords
/dports/chinese/p5-Lingua-ZH-Keywords/Lingua-ZH-Keywords-0.04/
H A DKeywords.pm8 use vars qw($VERSION @ISA @EXPORT @StopWords);
43 @StopWords = qw(
70 delete @hist{@StopWords};
/dports/textproc/p5-Text-Language-Guess/Text-Language-Guess-0.02/lib/Text/Language/
H A DGuess.pm16 use Lingua::StopWords;
128 my $stopwords = Lingua::StopWords::getStopWords($lang);
148 <$dir/Lingua/StopWords/*.pm>];
/dports/textproc/p5-Plucene-Plugin-Analyzer-SnowballAnalyzer/Plucene-Plugin-Analyzer-SnowballAnalyzer-1.1/lib/Plucene/Plugin/Analyzer/
H A DSnowballAnalyzer.pm11 use Lingua::StopWords;
89 my @stopwords = keys %{ Lingua::StopWords::getStopWords($LANG) };
/dports/math/vtk9/VTK-9.1.0/Infovis/Core/
H A DvtkWordCloud.h490 SetStdContainerMacro(StopWords, StopWordsContainer);
493 StopWords.insert(word); in AddStopWord()
498 StopWords.clear(); in ClearStopWords()
501 virtual StopWordsContainer GetStopWords() { return StopWords; } in GetStopWords()
604 StopWordsContainer StopWords; variable
/dports/textproc/p5-Lingua-StopWords/
H A D.license-catalog.mk9 _LICENSE_DISTFILES_ART10 =Lingua-StopWords-0.12.tar.gz
13 _LICENSE_DISTFILES_GPLv1+ =Lingua-StopWords-0.12.tar.gz

12345678910>>...24