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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DLineInputStream.java51 private char[] lineBuffer = null; // reusable byte buffer field in class:LineInputStream
70 char[] buf = lineBuffer;
73 buf = lineBuffer = new char[128];
101 System.arraycopy(lineBuffer, 0, buf, 0, offset);
102 lineBuffer = buf;
/openjdk7/jdk/src/share/classes/java/io/
H A DDataInputStream.java471 private char lineBuffer[]; field in class:DataInputStream
502 char buf[] = lineBuffer;
505 buf = lineBuffer = new char[128];
532 System.arraycopy(lineBuffer, 0, buf, 0, offset);
533 lineBuffer = buf;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DPlainView.java191 if (lineBuffer == null) {
192 lineBuffer = new Segment();
194 return lineBuffer;
698 Segment lineBuffer; field in class:PlainView
H A DWrappedPlainView.java218 if (lineBuffer == null) {
219 lineBuffer = new Segment();
221 return lineBuffer;
512 Segment lineBuffer; field in class:WrappedPlainView
/openjdk7/jdk/src/windows/native/java/util/
H A DTimeZone_md.c414 char lineBuffer[MAX_ZONE_CHAR * 4]; local
429 while (fgets(lineBuffer, sizeof(lineBuffer), fp) != NULL) {
434 start = idx = lineBuffer;
435 endp = &lineBuffer[sizeof(lineBuffer)];

Completed in 29 milliseconds