Searched refs:tokenCount (Results 1 - 9 of 9) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DLimitTokenCountFilter.java29 private int tokenCount = 0; field in class:LimitTokenCountFilter
41 if (tokenCount < maxTokenCount && input.incrementToken()) {
42 tokenCount++;
51 tokenCount = 0;
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/tasks/
H A DReadTokensTask.java69 int tokenCount = 0;
102 tokenCount++;
104 totalTokenCount += tokenCount;
105 return tokenCount;
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestSameTokenSamePosition.java67 private final int tokenCount = 4; field in class:BugReproTokenStream
76 if (nextTokenIndex < tokenCount) {
H A DTest2BTerms.java47 private int tokenCount; field in class:Test2BTerms.MyTokenStream
65 if (tokenCount >= tokensPerDoc) {
69 tokenCount++;
81 tokenCount = 0;
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestSameTokenSamePosition.java80 private final int tokenCount = 4; field in class:BugReproAnalyzerTokenizer
89 if (nextTokenIndex < tokenCount) {
H A DTest2BTerms.java47 private int tokenCount; field in class:Test2BTerms.MyTokenStream
65 if (tokenCount >= tokensPerDoc) {
69 tokenCount++;
81 tokenCount = 0;
/lucene-3.6.0/lucene/contrib/queries/src/java/org/apache/lucene/search/similar/
H A DMoreLikeThis.java871 int tokenCount = 0;
877 tokenCount++;
878 if (tokenCount > maxNumTokensParsed) {
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/synonym/
H A DSynonymFilter.java315 int tokenCount = 0;
370 tokenCount++;
391 matchInputLength = tokenCount;
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/analysis/
H A DBaseTokenStreamTestCase.java498 for(int tokenCount=0;tokenCount<numTokensToRead;tokenCount++) {

Completed in 571 milliseconds