Searched defs:normalize (Results 1 - 25 of 39) sorted by relevance

12

/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/hi/
H A DHindiNormalizer.java49 public int normalize(char s[], int len) { method in class:HindiNormalizer
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DLowerCaseTokenizer.java40 * <li>As of 3.1, {@link CharTokenizer} uses an int based API to normalize and
42 * {@link CharTokenizer#normalize(int)} for details.</li>
127 protected int normalize(int c) { method in class:LowerCaseTokenizer
H A DCharTokenizer.java37 * <li>As of 3.1, {@link CharTokenizer} uses an int based API to normalize and
39 * {@link #normalize(int)} for details.</li>
48 * {@link #isTokenChar(int)} and {@link #normalize(int)}.
182 new VirtualMethod<CharTokenizer>(CharTokenizer.class, "normalize", char.class);
205 * Called on each token UTF-16 code unit to normalize it before it is added to the
212 * supplementary characters, use the {@link #normalize(int)} method.
215 * @deprecated use {@link #normalize(int)} instead. This method will be
219 protected char normalize(char c) { method in class:CharTokenizer
220 return (char) normalize((int) c);
230 * {@link #normalize(cha
258 protected int normalize(int c) { method in class:CharTokenizer
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/cz/
H A DCzechStemmer.java48 len = normalize(s, len);
137 private int normalize(char s[], int len) { method in class:CzechStemmer
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/hu/
H A DHungarianLightStemmer.java86 return normalize(s, len);
217 private int normalize(char s[], int len) { method in class:HungarianLightStemmer
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/ru/
H A DRussianLightStemmer.java68 return normalize(s, len);
71 private int normalize(char s[], int len) { method in class:RussianLightStemmer
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DWeight.java42 * <li>The query normalization factor is passed to {@link #normalize(float)}. At
68 public abstract void normalize(float norm); method in class:Weight
H A DDisjunctionMaxQuery.java91 * normalize, score and explain these queries.
135 public void normalize(float norm) { method in class:DisjunctionMaxQuery.DisjunctionMaxWeight
138 wt.normalize(norm);
H A DMatchAllDocsQuery.java113 public void normalize(float queryNorm) { method in class:MatchAllDocsQuery.MatchAllDocsWeight
H A DTermQuery.java89 public void normalize(float queryNorm) { method in class:TermQuery.TermWeight
91 queryWeight *= queryNorm; // normalize query weight
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/fa/
H A DPersianNormalizer.java61 public int normalize(char s[], int len) { method in class:PersianNormalizer
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/geometry/
H A DFloatLatLng.java92 public LatLng normalize() { method in class:FloatLatLng
H A DFixedLatLng.java112 public LatLng normalize() { method in class:FixedLatLng
H A DLatLng.java38 public abstract LatLng normalize(); method in class:LatLng
62 LatLng ll=normalize();
109 LatLng ll1 = normalize();
110 ll2 = ll2.normalize();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpanWeight.java68 public void normalize(float queryNorm) { method in class:SpanWeight
70 queryWeight *= queryNorm; // normalize query weight
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/analysis/
H A DTestCharTokenizers.java192 protected char normalize(char c) { method in class:TestCharTokenizers.TestingCharTokenizerNormalize
197 protected int normalize(int c) { method in class:TestCharTokenizers.TestingCharTokenizerNormalize
209 protected char normalize(char c) { method in class:TestCharTokenizers.TestingCharTokenizerNormalizeIsTokenChar
214 protected int normalize(int c) { method in class:TestCharTokenizers.TestingCharTokenizerNormalizeIsTokenChar
229 // LUCENE-3642: normalize SMP->BMP and check that offsets are correct
236 protected int normalize(int c) {
267 // LUCENE-3642: normalize BMP->SMP and check that offsets are correct
274 protected int normalize(int c) {
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/search/
H A DAssertingIndexSearcher.java63 public void normalize(float norm) { method in class:AssertingIndexSearcher.UnmodifiableWeight
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/analysis/
H A DTestCharTokenizers.java186 protected char normalize(char c) { method in class:TestCharTokenizers.TestingCharTokenizerNormalize
191 protected int normalize(int c) { method in class:TestCharTokenizers.TestingCharTokenizerNormalize
203 protected char normalize(char c) { method in class:TestCharTokenizers.TestingCharTokenizerNormalizeIsTokenChar
208 protected int normalize(int c) { method in class:TestCharTokenizers.TestingCharTokenizerNormalizeIsTokenChar
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/search/
H A DAssertingIndexSearcher.java63 public void normalize(float norm) { method in class:AssertingIndexSearcher.UnmodifiableWeight
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/ar/
H A DArabicNormalizer.java67 public int normalize(char s[], int len) { method in class:ArabicNormalizer
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/in/
H A DIndicNormalizer.java244 public int normalize(char text[], int len) { method in class:IndicNormalizer
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/analysis/
H A DMockTokenizer.java104 char chars[] = Character.toChars(normalize(cp));
162 protected int normalize(int c) { method in class:MockTokenizer
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DRequestHandlers.java64 private static String normalize( String p ) method in class:RequestHandlers
81 return handlers.get(normalize(handlerName));
105 String norm = normalize( handlerName );
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/analysis/
H A DMockTokenizer.java102 char chars[] = Character.toChars(normalize(cp));
149 protected int normalize(int c) { method in class:MockTokenizer
/lucene-3.6.0/lucene/contrib/join/src/java/org/apache/lucene/search/join/
H A DToChildBlockJoinQuery.java125 public void normalize(float norm) { method in class:ToChildBlockJoinQuery.ToChildBlockJoinWeight
126 parentWeight.normalize(norm * joinQuery.getBoost());

Completed in 75 milliseconds

12