Searched refs:sourceStart (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamReader.java537 * Text starting a "sourceStart" is copied into "target" starting at "targetStart".
540 * The "sourceStart" argument must be greater or equal to 0 and less than or equal to
541 * the number of characters associated with the event. Usually, one requests text starting at a "sourceStart" of 0.
549 * for ( int sourceStart = 0 ; ; sourceStart += length )
551 * int nCopied = stream.getTextCharacters( sourceStart, myBuffer, 0, length );
561 * @param sourceStart the index of the first character in the source array to copy
572 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) argument
/openjdk7/jdk/src/share/classes/sun/text/
H A DCompactByteArray.java215 final static boolean arrayRegionMatches(byte[] source, int sourceStart, argument
219 int sourceEnd = sourceStart + len;
220 int delta = targetStart - sourceStart;
221 for (int i = sourceStart; i < sourceEnd; i++) {
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUtility.java47 public final static boolean arrayRegionMatches(char[] source, int sourceStart, argument
51 int sourceEnd = sourceStart + len;
52 int delta = targetStart - sourceStart;
53 for (int i = sourceStart; i < sourceEnd; i++) {
/openjdk7/jaxp/src/javax/xml/stream/util/
H A DStreamReaderDelegate.java204 public int getTextCharacters(int sourceStart, argument
209 return reader.getTextCharacters(sourceStart,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/util/
H A DStAXParserWrapper.java114 public int getTextCharacters(int sourceStart, char[] target, int targetStart, argument
117 return _reader.getTextCharacters(sourceStart, target, targetStart, length);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamReaderFilter.java136 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException { argument
137 return reader.getTextCharacters(sourceStart, target, targetStart, length);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java527 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException { argument
533 if(targetStart < 0 || length < 0 || sourceStart < 0 || targetStart >= target.length ||
539 if(sourceStart > textLength)
547 int copiedLength = Math.min(textLength - sourceStart, length);
548 System.arraycopy(base64EncodedText, sourceStart , target, targetStart, copiedLength);
551 return reader.getTextCharacters(sourceStart, target, targetStart, length);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLStreamFilterImpl.java405 * @param sourceStart
412 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException { argument
413 return fStreamReader.getTextCharacters(sourceStart, target,targetStart,length);
H A DXMLStreamReaderImpl.java1104 * Text starting a "sourceStart" is copied into "destination" starting at "targetStart".
1107 * The "sourceStart" argument must be greater or equal to 0 and less than or equal to
1108 * the number of characters associated with the event. Usually, one requests text starting at a "sourceStart" of 0.
1116 * for ( int sourceStart = 0 ; ; sourceStart += length )
1118 * int nCopied = stream.getTextCharacters( sourceStart, myBuffer, 0, length );
1128 * @param sourceStart the index of the first character in the source array to copy
1139 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException { argument
1145 if(targetStart < 0 || length < 0 || sourceStart < 0 || targetStart >= target.length ||
1150 //getTextStart() + sourceStart shoul
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java647 public int getTextCharacters(int sourceStart, char[] target, int targetStart, argument
650 int copiedSize = Math.min(targetLength, text.length() - sourceStart);
651 text.getChars(sourceStart, sourceStart + copiedSize, target, targetStart);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamReaderBufferProcessor.java597 public final int getTextCharacters(int sourceStart, char[] target, argument
609 int remaining = _textLen - sourceStart;
611 sourceStart += _textOffset;
612 System.arraycopy(_characters, sourceStart, target, targetStart, len);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXDocumentParser.java821 public final int getTextCharacters(int sourceStart, char[] target, argument
829 System.arraycopy(_characters, _charactersOffset + sourceStart,
980 public final int getTextAlgorithmBytes(int sourceStart, byte[] target, argument
983 System.arraycopy(_algorithmData, sourceStart, target,

Completed in 121 milliseconds