Searched refs:firstChar (Results 1 - 3 of 3) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DMappingCharFilter.java57 int firstChar = nextChar();
58 if (firstChar == -1) return -1;
60 normMap.submap.get(Character.valueOf((char) firstChar)) : null;
61 if (nm == null) return firstChar;
63 if (result == null) return firstChar;
/lucene-3.6.0/solr/solrj/src/java/org/apache/noggit/
H A DJSONParser.java245 * this call. firstChar should be the first numeric digit read.
247 private long readNumber(int firstChar, boolean isNeg) throws IOException { argument
248 out.unsafeWrite(firstChar); // unsafe OK since we know output is big enough
251 long v = '0' - firstChar;
/lucene-3.6.0/solr/example/solr/conf/velocity/
H A Djquery.autocomplete.js463 var firstChar = value.charAt(0).toLowerCase();
465 if( !stMatchSets[firstChar] )
466 stMatchSets[firstChar] = [];
476 stMatchSets[firstChar].push(row);

Completed in 14 milliseconds