Searched refs:newBuf (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DUnsyncByteArrayOutputStream.java87 byte newBuf[] = new byte[newSize];
88 System.arraycopy(buf, 0, newBuf, 0, pos);
89 buf = newBuf;
/openjdk7/jdk/src/share/classes/sun/io/
H A DByteToCharUTF8.java70 byte[] newBuf;
71 newBuf = new byte[inEnd - inOff + savedSize];
73 newBuf[i] = savedBytes[i];
75 System.arraycopy(input, inOff, newBuf, savedSize, inEnd - inOff);
76 input = newBuf;
78 inEnd = newBuf.length;
H A DCharToByteGB18030.java107 char[] newBuf = new char[inEnd - inOff + 1];
108 newBuf[0] = highHalfZoneCode;
109 System.arraycopy(input, inOff, newBuf, 1, inEnd - inOff);
111 input = newBuf;
113 inEnd = newBuf.length;
H A DByteToCharGB18030.java112 byte[] newBuf = new byte[inEnd - inOff + savedSize];
114 newBuf[i] = savedBytes[i];
116 System.arraycopy(input, inOff, newBuf, savedSize, inEnd - inOff);
118 input = newBuf;
120 inEnd = newBuf.length;
H A DByteToCharISO2022JP.java101 byte[] newBuf = new byte[inEnd - inOff + savedSize];
103 newBuf[i] = savedBytes[i];
105 System.arraycopy(input, inOff, newBuf, savedSize, inEnd - inOff);
107 input = newBuf;
109 inEnd = newBuf.length;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWhitespaceStripper.java72 char[] newBuf = new char[Math.max(bufLen+length,buf.length*2)];
73 System.arraycopy(buf,0,newBuf,0,bufLen);
74 buf = newBuf;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DWhitespaceStripper.java77 char[] newBuf = new char[Math.max(bufLen+length,buf.length*2)];
78 System.arraycopy(buf,0,newBuf,0,bufLen);
79 buf = newBuf;
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6373555.java114 byte[] newBuf = readFully(in);
116 if (buf.length != newBuf.length) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DFiber.java693 Tube[] newBuf = new Tube[len*2];
694 System.arraycopy(conts,0,newBuf,0,len);
695 conts = newBuf;
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerBase.java1146 char[] newBuf = new char[buffer.length*2];
1148 System.arraycopy(buffer,startIndex[0],newBuf,
1149 newBuf.length-(buffer.length-startIndex[0]),
1152 startIndex[0]+=newBuf.length-buffer.length;
1154 buffer=newBuf;
1155 newBuf=null;
1387 char[] newBuf = new char[buffer.length*2];
1388 System.arraycopy(buffer,0,newBuf,0,bufferIndex);
1389 buffer = newBuf;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java320 Scope[] newBuf = new Scope[scopes.length*2];
321 System.arraycopy(scopes,0,newBuf,0,scopes.length);
322 scopes = newBuf;
/openjdk7/jdk/src/share/classes/java/util/
H A DScanner.java885 CharBuffer newBuf = CharBuffer.allocate(newSize);
886 newBuf.put(buf);
887 newBuf.flip();
890 buf = newBuf;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java512 char[] newBuf = new char[256];
514 newBuf[0] = buf[0];
515 buf = newBuf;

Completed in 151 milliseconds