Searched refs:tmp2 (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/params/
H A DModifiableSolrParams.java145 String[] tmp2 = new String[tmp.length-1];
146 if (tmp2.length==0) {
147 tmp2 = null;
150 System.arraycopy(tmp, 0, tmp2, 0, i);
151 System.arraycopy(tmp, i+1, tmp2, i, tmp.length-i-1);
152 set(name, tmp2);
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/fst/
H A DFSTCompletionLookup.java187 BytesRef tmp2 = new BytesRef();
202 tmp2.bytes = tmp1.bytes;
203 tmp2.offset = input.getPosition();
204 tmp2.length = tmp1.length - input.getPosition();
205 builder.add(tmp2, bucket);

Completed in 23 milliseconds