Searched refs:fill (Results 1 - 25 of 75) sorted by relevance

123

/lucene-3.6.0/solr/core/src/java/org/apache/solr/internal/csv/writer/
H A DCSVField.java31 private int fill; field in class:CSVField
89 * @return the fill pattern.
92 return fill;
97 * @param fill the file pattern
99 public void setFill(int fill) { argument
101 this.fill = fill;
105 * Does this field override fill ?
H A DCSVConfig.java47 /** The fill pattern */
48 private int fill; field in class:CSVConfig
49 /** The fill char. Defaults to a space */
141 * @return the fill pattern.
144 return fill;
148 * Set the fill pattern. Defaults to {@link #FILLNONE}
150 * @param fill the fill pattern.
152 public void setFill(int fill) { argument
153 this.fill
[all...]
H A DCSVWriter.java90 char[] fill = new char[fillSize];
91 Arrays.fill(fill, config.getFillChar());
93 sb.append(fill);
99 sb.append(fill);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DFloatArrayAllocator.java65 Arrays.fill(array, 0);
H A DIntArrayAllocator.java65 Arrays.fill(array, 0);
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/
H A DTestCharacterUtils.java128 assertTrue(instance.fill(buffer,reader));
132 assertTrue(instance.fill(buffer,reader));
138 assertFalse(instance.fill(buffer,reader));
148 assertTrue(instance.fill(buffer, reader));
152 assertTrue(instance.fill(buffer, reader));
155 assertTrue(instance.fill(buffer, reader));
159 assertTrue(instance.fill(buffer, reader));
163 assertTrue(instance.fill(buffer, reader));
167 assertFalse(instance.fill(buffer, reader));
176 assertTrue(instance.fill(buffe
[all...]
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/util/
H A DTestCharacterUtils.java128 assertTrue(instance.fill(buffer,reader));
132 assertTrue(instance.fill(buffer,reader));
138 assertFalse(instance.fill(buffer,reader));
148 assertTrue(instance.fill(buffer, reader));
152 assertTrue(instance.fill(buffer, reader));
155 assertTrue(instance.fill(buffer, reader));
159 assertTrue(instance.fill(buffer, reader));
163 assertTrue(instance.fill(buffer, reader));
167 assertFalse(instance.fill(buffer, reader));
176 assertTrue(instance.fill(buffe
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DDefaultSkipListWriter.java80 Arrays.fill(lastSkipDoc, 0);
81 Arrays.fill(lastSkipPayloadLength, -1); // we don't have to write the first length in the skip list
82 Arrays.fill(lastSkipFreqPointer, freqOutput.getFilePointer());
84 Arrays.fill(lastSkipProxPointer, proxOutput.getFilePointer());
H A DDefaultSkipListReader.java54 Arrays.fill(freqPointer, freqBasePointer);
55 Arrays.fill(proxPointer, proxBasePointer);
56 Arrays.fill(payloadLength, 0);
H A DStoredFieldsWriter.java48 fill(state.numDocs);
96 void fill(int docID) throws IOException { method in class:StoredFieldsWriter
109 fill(perDoc.docID);
H A DByteBlockPool.java69 // Fully zero fill buffers that we fully used
70 Arrays.fill(buffers[i], (byte) 0);
72 // Partial zero fill the final buffer
73 Arrays.fill(buffers[bufferUpto], 0, byteUpto, (byte) 0);
H A DMultiLevelSkipListReader.java173 Arrays.fill(skipDoc, 0);
174 Arrays.fill(numSkipped, 0);
175 Arrays.fill(childPointer, 0);
H A DTermVectorsTermsWriter.java56 fill(state.numDocs);
109 void fill(int docID) throws IOException { method in class:TermVectorsTermsWriter
153 fill(perDoc.docID);
/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DGener.java85 Arrays.fill(remap, 1);
92 Arrays.fill(remap, -1);
H A DLift.java99 Arrays.fill(remap, -1);
H A DReduce.java85 Arrays.fill(remap, -1);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DCharacterUtils.java133 * the {@link CharacterBuffer} as possible, each call to fill will start
140 * {@link Version} > 3.0 {@link #fill(CharacterBuffer, Reader)} guarantees
148 * the buffer to fill.
156 public abstract boolean fill(CharacterBuffer buffer, Reader reader) throws IOException; method in class:CharacterUtils
178 public boolean fill(final CharacterBuffer buffer, final Reader reader) throws IOException { method in class:CharacterUtils.Java5CharacterUtils
252 public boolean fill(final CharacterBuffer buffer, final Reader reader) throws IOException { method in class:CharacterUtils.Java4CharacterUtils
265 * {@link CharacterUtils#fill(CharacterBuffer, Reader)}.
/lucene-3.6.0/lucene/contrib/grouping/src/java/org/apache/lucene/search/grouping/
H A DSentinelIntSet.java52 Arrays.fill(keys, emptyVal);
115 if (emptyVal != 0) Arrays.fill(keys, emptyVal);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/packed/
H A DDirect16.java85 Arrays.fill(values, (short)0);
H A DDirect32.java81 Arrays.fill(values, 0);
H A DDirect64.java77 Arrays.fill(values, 0L);
H A DDirect8.java86 Arrays.fill(values, (byte)0);
/lucene-3.6.0/solr/solrj/src/java/org/apache/noggit/
H A DCharArr.java181 fill();
190 public int fill() throws IOException { method in class:CharArr
253 if (start>=end) fill();
266 public int fill() throws IOException { method in class:CharArrReader
274 // fill fully or not???
/lucene-3.6.0/lucene/contrib/analyzers/common/src/test/org/apache/lucene/analysis/miscellaneous/
H A DPatternAnalyzerTest.java96 Arrays.fill(largeWord, 'a');
104 Arrays.fill(largeWord2, 'b');
/lucene-3.6.0/lucene/contrib/analyzers/kuromoji/src/tools/java/org/apache/lucene/analysis/ja/util/
H A DCharacterDefinitionWriter.java44 Arrays.fill(characterCategoryMap, CharacterDefinition.DEFAULT);

Completed in 77 milliseconds

123