Searched refs:phraseFreq (Results 1 - 8 of 8) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpanScorer.java111 float phraseFreq = (expDoc == doc) ? freq : 0.0f;
112 tfExplanation.setValue(getSimilarity().tf(phraseFreq));
113 tfExplanation.setDescription("tf(phraseFreq=" + phraseFreq + ")");
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DPhraseScorer.java27 * the terms is allowed. The abstract method {@link #phraseFreq()} of extending classes
38 private float freq; //phrase frequency in current doc as computed by phraseFreq().
107 freq = phraseFreq(); // check for phrase
116 * phrase frequency in current doc as computed by phraseFreq().
130 abstract float phraseFreq() throws IOException; method in class:PhraseScorer
H A DExactPhraseScorer.java154 freq = phraseFreq();
196 freq = phraseFreq();
237 private int phraseFreq() throws IOException { method in class:ExactPhraseScorer
H A DMultiPhraseQuery.java261 float phraseFreq;
263 phraseFreq = scorer.freq();
265 phraseFreq = 0.0f;
268 tfExplanation.setValue(similarity.tf(phraseFreq));
269 tfExplanation.setDescription("tf(phraseFreq=" + phraseFreq + ")");
H A DPhraseQuery.java319 float phraseFreq;
321 phraseFreq = scorer.freq();
323 phraseFreq = 0.0f;
326 tfExplanation.setValue(similarity.tf(phraseFreq));
327 tfExplanation.setDescription("tf(phraseFreq=" + phraseFreq + ")");
H A DSloppyPhraseScorer.java72 protected float phraseFreq() throws IOException { method in class:SloppyPhraseScorer
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DJustCompileSearch.java327 protected float phraseFreq() throws IOException { method in class:JustCompileSearch.JustCompilePhraseScorer
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DJustCompileSearch.java327 protected float phraseFreq() throws IOException { method in class:JustCompileSearch.JustCompilePhraseScorer

Completed in 21 milliseconds