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

/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/stream/
H A DXMLStreamReader.java541 * Text starting a "sourceStart" is copied into "target" starting at "targetStart".
544 * The "sourceStart" argument must be greater or equal to 0 and less than or equal to
545 * the number of characters associated with the event. Usually, one requests text starting at a "sourceStart" of 0.
553 * for ( int sourceStart = 0 ; ; sourceStart += length )
555 * int nCopied = stream.getTextCharacters( sourceStart, myBuffer, 0, length );
565 * @param sourceStart the index of the first character in the source array to copy
576 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) argument
/openjdk10/jdk/src/java.base/share/classes/sun/text/
H A DCompactByteArray.java215 static final 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++) {
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/stream/util/
H A DStreamReaderDelegate.java200 public int getTextCharacters(int sourceStart, argument
205 return reader.getTextCharacters(sourceStart,
/openjdk10/jaxws/src/java.xml.bind/share/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);
/openjdk10/jaxws/src/java.xml.ws/share/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);
H A DXMLReaderComposite.java423 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException { argument
429 return payloadReader.getTextCharacters(sourceStart, target, targetStart, length);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/util/stax/
H A DLazyEnvelopeStaxReader.java281 public int getTextCharacters(int sourceStart, char[] target, argument
283 if (usePayloadReaderDelegate) return payloadReader.getTextCharacters(sourceStart, target, targetStart,
285 return super.getTextCharacters(sourceStart, target, targetStart, length);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/encoding/
H A DMtomCodec.java620 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) throws XMLStreamException { argument
626 if(targetStart < 0 || length < 0 || sourceStart < 0 || targetStart >= target.length ||
632 if(sourceStart > textLength)
640 int copiedLength = Math.min(textLength - sourceStart, length);
641 System.arraycopy(base64EncodedText, sourceStart , target, targetStart, copiedLength);
644 return reader.getTextCharacters(sourceStart, target, targetStart, length);
/openjdk10/jaxp/src/java.xml/share/classes/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.java1194 * Text starting a "sourceStart" is copied into "destination" starting at
1198 * The "sourceStart" argument must be greater or equal to 0 and less than or
1200 * requests text starting at a "sourceStart" of 0. If the number of
1209 * for ( int sourceStart = 0 ; ; sourceStart += length )
1211 * int nCopied = stream.getTextCharacters( sourceStart, myBuffer, 0, length );
1222 * @param sourceStart the index of the first character in the source array
1237 public int getTextCharacters(int sourceStart, char[] target, int targetStart, int length) argument
1244 if (targetStart < 0 || length < 0 || sourceStart < 0 || targetStart >= target.length
1249 //getTextStart() + sourceStart shoul
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/staxex/util/
H A DDOMStreamReader.java639 public int getTextCharacters(int sourceStart, char[] target, int targetStart, argument
642 int copiedSize = Math.min(targetLength, text.length() - sourceStart);
643 text.getChars(sourceStart, sourceStart + copiedSize, target, targetStart);
/openjdk10/jaxws/src/java.xml.ws/share/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);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamReaderBufferProcessor.java593 public final int getTextCharacters(int sourceStart, char[] target, argument
605 int remaining = _textLen - sourceStart;
607 sourceStart += _textOffset;
608 System.arraycopy(_characters, sourceStart, target, targetStart, len);
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXDocumentParser.java819 public final int getTextCharacters(int sourceStart, char[] target, argument
827 System.arraycopy(_characters, _charactersOffset + sourceStart,
997 public final int getTextAlgorithmBytes(int sourceStart, byte[] target, argument
1000 System.arraycopy(_algorithmData, sourceStart, target,

Completed in 110 milliseconds