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 D | UnsyncByteArrayOutputStream.java | 87 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 D | ByteToCharUTF8.java | 70 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 D | CharToByteGB18030.java | 107 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 D | ByteToCharGB18030.java | 112 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 D | ByteToCharISO2022JP.java | 101 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 D | WhitespaceStripper.java | 72 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 D | WhitespaceStripper.java | 77 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 D | B6373555.java | 114 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 D | Fiber.java | 693 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 D | NormalizerBase.java | 1146 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 D | DOMStreamReader.java | 320 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 D | Scanner.java | 885 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 D | Parser.java | 512 char[] newBuf = new char[256]; 514 newBuf[0] = buf[0]; 515 buf = newBuf;
|
Completed in 151 milliseconds