Searched refs:_contentCharactersBuffer (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DAbstractCreator.java71 _contentCharactersBuffer = _currentContentCharactersBufferFragment.getArray();
124 if (_contentCharactersBufferPtr + length >= _contentCharactersBuffer.length) {
136 System.arraycopy(ch, start, _contentCharactersBuffer, _contentCharactersBufferPtr, length);
142 System.arraycopy(ch, start, _contentCharactersBuffer, _contentCharactersBufferPtr, length);
154 _contentCharactersBuffer = _currentContentCharactersBufferFragment.getArray();
156 _contentCharactersBuffer = new char[_contentCharactersBuffer.length];
157 _currentContentCharactersBufferFragment = new FragmentedArray(_contentCharactersBuffer,
H A DXMLStreamBufferMark.java72 _contentCharactersBuffer = src._currentContentCharactersBufferFragment;
H A DAbstractCreatorProcessor.java135 protected char[] _contentCharactersBuffer; field in class:AbstractCreatorProcessor
H A DAbstractProcessor.java145 _contentCharactersBuffer = _currentContentCharactersBufferFragment.getArray();
219 if (_contentCharactersBufferPtr + length < _contentCharactersBuffer.length) {
227 _contentCharactersBuffer = _currentContentCharactersBufferFragment.getArray();
H A DMutableXMLStreamBuffer.java95 _contentCharactersBuffer = new FragmentedArray<char[]>(new char[4096]);
239 * _contentCharactersBuffer to limit the memory used by the buffer
H A DXMLStreamBuffer.java110 protected FragmentedArray<char[]> _contentCharactersBuffer; field in class:XMLStreamBuffer
460 return _contentCharactersBuffer;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamWriterBufferProcessor.java134 final String comment = new String(_contentCharactersBuffer, start, length);
142 final String comment = new String(_contentCharactersBuffer, start, length);
233 writer.writeCharacters(_contentCharactersBuffer,start,length);
239 writer.writeCharacters(_contentCharactersBuffer,start,length);
260 final String comment = new String(_contentCharactersBuffer, start, length);
267 final String comment = new String(_contentCharactersBuffer, start, length);
341 writer.writeCharacters(_contentCharactersBuffer,start,length);
347 writer.writeCharacters(_contentCharactersBuffer,start,length);
368 final String comment = new String(_contentCharactersBuffer, start, length);
375 final String comment = new String(_contentCharactersBuffer, star
[all...]
H A DStreamReaderBufferProcessor.java252 _characters = _contentCharactersBuffer;
258 _characters = _contentCharactersBuffer;
280 _characters = _contentCharactersBuffer;
286 _characters = _contentCharactersBuffer;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferProcessor.java360 processComment(_contentCharactersBuffer, start, length);
473 _contentHandler.characters(_contentCharactersBuffer, start, length);
480 _contentHandler.characters(_contentCharactersBuffer, start, length);
540 processComment(_contentCharactersBuffer, start, length);

Completed in 31 milliseconds