Searched defs:stemmer (Results 1 - 25 of 53) sorted by relevance

123

/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DOptimizer2.java55 package org.egothor.stemmer;
62 * the stemmer not being able to recognize words (as in Optimizer), is
63 * curtailed, allowing the stemmer to recognize words for which the original
64 * trie was built. Use of this class allows the stemmer to be self-teaching.
H A DCell.java55 package org.egothor.stemmer;
H A DCompile.java55 package org.egothor.stemmer;
69 * The Compile class is used to compile a stemmer table.
83 * files containing a stemmer table to compile.
108 String charset = System.getProperty("egothor.stemmer.charset", "UTF-8");
H A DDiffIt.java55 package org.egothor.stemmer;
65 * stemmer table.
81 * stemmer table. The program reads the file and generates the patch commands
84 * @param args the path to a file containing a stemmer table
H A DGener.java55 package org.egothor.stemmer;
H A DLift.java55 package org.egothor.stemmer;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DPorterStemFilter.java44 certain terms from being passed to the stemmer
50 private final PorterStemmer stemmer = new PorterStemmer(); field in class:PorterStemFilter
63 if ((!keywordAttr.isKeyword()) && stemmer.stem(termAtt.buffer(), 0, termAtt.length()))
64 termAtt.copyBuffer(stemmer.getResultBuffer(), 0, stemmer.getResultLength());
/lucene-3.6.0/solr/contrib/analysis-extras/src/java/org/apache/solr/analysis/
H A DStempelPolishStemFilterFactory.java29 import org.egothor.stemmer.Trie;
35 private Trie stemmer = null; field in class:StempelPolishStemFilterFactory
39 return new StempelFilter(input, new StempelStemmer(stemmer));
44 stemmer = StempelStemmer.load(loader.openResource(STEMTABLE));
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/ar/
H A DArabicStemFilter.java38 private final ArabicStemmer stemmer = new ArabicStemmer(); field in class:ArabicStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/bg/
H A DBulgarianStemFilter.java38 private final BulgarianStemmer stemmer = new BulgarianStemmer(); field in class:BulgarianStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/br/
H A DBrazilianStemFilter.java44 private BrazilianStemmer stemmer = new BrazilianStemmer(); field in class:BrazilianStemFilter
77 final String s = stemmer.stem(term);
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/cz/
H A DCzechStemFilter.java40 private final CzechStemmer stemmer = new CzechStemmer(); field in class:CzechStemFilter
52 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/de/
H A DGermanLightStemFilter.java38 private final GermanLightStemmer stemmer = new GermanLightStemmer(); field in class:GermanLightStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
H A DGermanMinimalStemFilter.java38 private final GermanMinimalStemmer stemmer = new GermanMinimalStemmer(); field in class:GermanMinimalStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
H A DGermanStemFilter.java33 * not be stemmed at all. The stemmer used can be changed at runtime after the
48 private GermanStemmer stemmer = new GermanStemmer(); field in class:GermanStemFilter
83 String s = stemmer.stem(term);
97 public void setStemmer( GermanStemmer stemmer )
99 if ( stemmer != null ) {
100 this.stemmer = stemmer;
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/el/
H A DGreekStemFilter.java43 private final GreekStemmer stemmer = new GreekStemmer(); field in class:GreekStemFilter
55 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/en/
H A DEnglishMinimalStemFilter.java38 private final EnglishMinimalStemmer stemmer = new EnglishMinimalStemmer(); field in class:EnglishMinimalStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
H A DKStemFilter.java38 private final KStemmer stemmer = new KStemmer(); field in class:KStemFilter
57 if ((!keywordAtt.isKeyword()) && stemmer.stem(term, len)) {
58 termAttribute.setEmpty().append(stemmer.asCharSequence());
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/es/
H A DSpanishLightStemFilter.java38 private final SpanishLightStemmer stemmer = new SpanishLightStemmer(); field in class:SpanishLightStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/fi/
H A DFinnishLightStemFilter.java38 private final FinnishLightStemmer stemmer = new FinnishLightStemmer(); field in class:FinnishLightStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/fr/
H A DFrenchLightStemFilter.java38 private final FrenchLightStemmer stemmer = new FrenchLightStemmer(); field in class:FrenchLightStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
H A DFrenchMinimalStemFilter.java38 private final FrenchMinimalStemmer stemmer = new FrenchMinimalStemmer(); field in class:FrenchMinimalStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
H A DFrenchStemFilter.java34 * The used stemmer can be changed at runtime after the
53 private FrenchStemmer stemmer = new FrenchStemmer(); field in class:FrenchStemFilter
85 String s = stemmer.stem( term );
98 public void setStemmer( FrenchStemmer stemmer ) {
99 if ( stemmer != null ) {
100 this.stemmer = stemmer;
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/gl/
H A DGalicianMinimalStemFilter.java38 private final GalicianMinimalStemmer stemmer = new GalicianMinimalStemmer(); field in class:GalicianMinimalStemFilter
50 final int newlen = stemmer.stem(termAtt.buffer(), termAtt.length());
H A DGalicianStemFilter.java38 private final GalicianStemmer stemmer = new GalicianStemmer(); field in class:GalicianStemFilter
50 // this stemmer increases word length by 1: worst case '*çom' -> '*ción'
52 final int newlen = stemmer.stem(termAtt.resizeBuffer(len+1), len);

Completed in 137 milliseconds

123