Searched defs:prev (Results 1 - 12 of 12) sorted by relevance

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/encoding/
H A DDGapIntDecoder.java35 private int prev = 0; field in class:DGapIntDecoder
48 return prev += decode;
54 prev = 0;
H A DDGapIntEncoder.java40 private int prev = 0; field in class:DGapIntEncoder
49 encoder.encode(value - prev);
50 prev = value;
61 prev = 0;
H A DUniqueValuesIntEncoder.java34 * Denotes an illegal value which we can use to init 'prev' to. Since all
40 private long prev = ILLEGAL_VALUE; field in class:UniqueValuesIntEncoder
49 if (prev != value) {
51 prev = value;
63 prev = ILLEGAL_VALUE;
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/collections/
H A DIntHashSet.java152 * hash's with the following next[] and prev[]. Those are also used to store
157 private int prev; field in class:IntHashSet
325 this.prev = 0;
336 prev = index;
342 this.prev = 0;
451 if (prev == 0) {
455 next[prev] = next[index];
514 * Prints the entire map, including the index, key, object, next and prev.
H A DArrayHashMap.java167 * hash's with the following next[] and prev[]. Those are also used to store
172 private int prev; field in class:ArrayHashMap
322 prev = 0;
333 prev = index;
339 return prev = 0;
445 if (prev == 0) {
449 next[prev] = next[index];
H A DFloatToObjectMap.java183 * hash's with the following next[] and prev[]. Those are also used to store
188 private int prev; field in class:FloatToObjectMap
380 this.prev = 0;
391 prev = index;
397 this.prev = 0;
518 if (prev == 0) {
522 next[prev] = next[index];
H A DIntToDoubleMap.java181 * hash's with the following next[] and prev[]. Those are also used to store
186 private int prev; field in class:IntToDoubleMap
381 this.prev = 0;
392 prev = index;
398 this.prev = 0;
515 if (prev == 0) {
519 next[prev] = next[index];
H A DIntToIntMap.java179 * hash's with the following next[] and prev[]. Those are also used to store
184 private int prev; field in class:IntToIntMap
378 this.prev = 0;
389 prev = index;
395 this.prev = 0;
512 if (prev == 0) {
516 next[prev] = next[index];
H A DIntToObjectMap.java182 * hash's with the following next[] and prev[]. Those are also used to store
187 private int prev; field in class:IntToObjectMap
380 this.prev = 0;
391 prev = index;
397 this.prev = 0;
518 if (prev == 0) {
522 next[prev] = next[index];
H A DObjectToFloatMap.java183 * hash's with the following next[] and prev[]. Those are also used to store
188 private int prev; field in class:ObjectToFloatMap
382 this.prev = 0;
393 prev = index;
399 this.prev = 0;
517 if (prev == 0) {
521 next[prev] = next[index];
H A DObjectToIntMap.java183 * hash's with the following next[] and prev[]. Those are also used to store
188 private int prev; field in class:ObjectToIntMap
382 this.prev = 0;
393 prev = index;
399 this.prev = 0;
516 if (prev == 0) {
520 next[prev] = next[index];
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DSegmentTermEnum.java188 final Term prev() { method in class:SegmentTermEnum

Completed in 32 milliseconds