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

/lucene-3.6.0/solr/solrj/src/java/org/apache/noggit/
H A DJSONParser.java140 // info about value that was just read (or is in the middle of being read)
441 // middle is the pointer to the middle of a buffer to start scanning for a non-string
442 // character ('"' or "/"). start<=middle<end
444 private void readStringChars2(CharArr arr, int middle) throws IOException { argument
446 if (middle>=end) {
447 arr.write(buf,start,middle-start);
449 middle=start;
451 int ch = buf[middle++];
453 int len = middle
[all...]

Completed in 12 milliseconds