Searched defs:cb (Results 1 - 4 of 4) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/internal/csv/
H A DCharBuffer.java84 * Appends the contents of <code>cb</code> to the end of this CharBuffer.
85 * @param cb the CharBuffer to append or null
87 public void append(final CharBuffer cb) { argument
88 if (cb == null) {
91 provideCapacity(length + cb.length);
92 System.arraycopy(cb.c, 0, c, length, cb.length);
93 length += cb.length;
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DTestBoolean2.java290 public static BooleanQuery randBoolQuery(Random rnd, boolean allowMust, int level, String field, String[] vals, Callback cb) { argument
303 q = randBoolQuery(rnd, allowMust, level-1, field, vals, cb);
323 if (cb!=null) cb.postCreate(current);
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DTestBoolean2.java290 public static BooleanQuery randBoolQuery(Random rnd, boolean allowMust, int level, String field, String[] vals, Callback cb) { argument
303 q = randBoolQuery(rnd, allowMust, level-1, field, vals, cb);
323 if (cb!=null) cb.postCreate(current);
/lucene-3.6.0/solr/solrj/src/java/org/apache/noggit/
H A DCharArr.java168 public int read(CharBuffer cb) throws IOException { argument
173 if (sz>0) cb.put(buf, start, sz);
178 if (sz>0) cb.put(buf, start, sz);
185 cb.put(buf, start, s);
257 public int read(CharBuffer cb) throws IOException { argument
260 if (sz>0) cb.put(buf,start,end);
261 int sz2 = in.read(cb);

Completed in 13 milliseconds