Searched defs:startSize (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DCharArraySet.java63 * Create set with enough capacity to hold startSize terms
68 * @param startSize
74 public CharArraySet(Version matchVersion, int startSize, boolean ignoreCase) { argument
75 this(new CharArrayMap<Object>(matchVersion, startSize, ignoreCase));
96 * Creates a set with enough capacity to hold startSize terms
98 * @param startSize
106 public CharArraySet(int startSize, boolean ignoreCase) { argument
107 this(Version.LUCENE_30, startSize, ignoreCase);
H A DCharArrayMap.java63 * Create map with enough capacity to hold startSize terms
68 * @param startSize
75 public CharArrayMap(Version matchVersion, int startSize, boolean ignoreCase) { argument
78 while(startSize + (startSize>>2) > size)

Completed in 14 milliseconds