Lines Matching defs:lineBuf
359 //System.out.println("line=<" + new String(lineBuf, 0, limit) + ">");
362 c = lr.lineBuf[keyLen];
380 c = lr.lineBuf[valueStart];
390 String key = loadConvert(lr.lineBuf, 0, keyLen, convtBuf);
391 String value = loadConvert(lr.lineBuf, valueStart, limit - valueStart, convtBuf);
400 * the line in "lineBuf".
415 char[] lineBuf = new char[1024];
476 lineBuf[len++] = c;
477 if (len == lineBuf.length) {
478 int newLength = lineBuf.length * 2;
483 System.arraycopy(lineBuf, 0, buf, 0, lineBuf.length);
484 lineBuf = buf;