Searched refs:getChars (Results 1 - 25 of 40) sorted by relevance

12

/dalvik/libcore/luni/src/main/java/java/io/
H A DBufferedWriter.java318 str.getChars(offset, offset + count, chars, 0);
327 str.getChars(offset, offset + available, buf, pos);
338 str.getChars(offset, offset + available, chars, 0);
342 str.getChars(offset, offset + available, buf, pos);
H A DWriter.java172 if (count < 0) { // other cases tested by getChars()
176 str.getChars(offset, offset + count, buf, 0);
H A DStringReader.java178 str.getChars(pos, end, buf, offset);
H A DCharArrayWriter.java241 str.getChars(offset, offset + len, buf, this.count);
/dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
H A DElemTextLiteral.java93 public char[] getChars() method in class:ElemTextLiteral
H A DElemExtensionDecl.java225 char[] chars = tl.getChars();
309 char[] chars = tl.getChars();
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DStringBuffer2Test.java101 "char".getChars(0, 4, buf, 0);
436 * @tests java.lang.StringBuffer#getChars(int, int, char[], int)
441 method = "getChars",
445 // Test for method void java.lang.StringBuffer.getChars(int, int, char
449 testBuffer.getChars(4, 8, buf, 2);
455 buf2.getChars(-1, 0, new char[5], 2);
462 buf2.getChars(0, -1, new char[5], 2);
469 buf2.getChars(0, -1, new char[5], 2);
476 buf2.getChars(2, 1, new char[5], 2);
483 buf2.getChars(
[all...]
H A DStringBuilderTest.java815 * @tests java.lang.StringBuilder.getChars(int, int, char[], int)'
820 method = "getChars",
827 sb.getChars(0, 10, dst, 0);
831 sb.getChars(0, 5, dst, 0);
833 fixture.getChars(0, 5, fixtureChars, 0);
838 sb.getChars(0, 5, dst, 5);
839 fixture.getChars(0, 5, fixtureChars, 5);
844 sb.getChars(5, 10, dst, 1);
845 fixture.getChars(5, 10, fixtureChars, 1);
849 sb.getChars(
[all...]
H A DString2Test.java686 * @tests java.lang.String#getChars(int, int, char[], int)
691 method = "getChars",
695 // Test for method void java.lang.String.getChars(int, int, char [],
697 hw1.getChars(5, hw1.length(), rbuf, 0);
700 assertTrue("getChars returned incorrect char(s)", rbuf[i] == buf[i]);
703 "Hello World".getChars(-1, 1, null, 0);
712 "Hello World".getChars(6, 2, null, 0);
719 "Hello World".getChars(2, 10, new char[10], 4);
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DToSAXHandler.java127 characters.getChars(0,len, m_charsBuff, 0);
148 comment.getChars(0,len, m_charsBuff, 0);
H A DToTextSAXHandler.java94 data.getChars(0, length, m_charsBuff, 0);
359 characters.getChars(0, length, m_charsBuff, 0);
H A DToTextStream.java477 data.getChars(0, length, m_charsBuff, 0);
578 characters.getChars(0, length, m_charsBuff, 0);
H A DWriterToUTF8Buffered.java348 s.getChars(start_chunk,end_chunk, m_inputChars,0);
378 s.getChars(0, length , m_inputChars, 0);
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_StringReader.java159 str.getChars(pos, end, buf, offset);
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DXMLString.java122 public abstract void getChars(int srcBegin, int srcEnd, char dst[], method in interface:XMLString
H A DXMLStringDefault.java143 public void getChars(int srcBegin, int srcEnd, char dst[], method in class:XMLStringDefault
H A DFastStringBuffer.java499 value.getChars(copyfrom, copyfrom + available, m_array[m_lastChunk],
581 value.getChars(copyfrom, copyfrom + available, m_array[m_lastChunk],
1250 private void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) method in class:FastStringBuffer
/dalvik/libcore/xml/src/main/java/org/apache/xpath/objects/
H A DXStringForChars.java211 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) method in class:XStringForChars
H A DXString.java277 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) method in class:XString
279 str().getChars(srcBegin, srcEnd, dst, dstBegin);
1033 this.getChars(0, len, buf, 0);
/dalvik/libcore/nio/src/main/java/java/nio/
H A DCharSequenceAdapter.java88 sequence.toString().getChars(position, newPosition, dest, off);
/dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
H A DProcessorCharacters.java82 m_accumulator.getChars(0, nChars, chars, 0);
/dalvik/libcore/luni/src/main/java/java/lang/
H A DStringBuffer.java414 public synchronized void getChars(int start, int end, char[] buffer, int idx) { method in class:StringBuffer
415 super.getChars(start, end, buffer, idx);
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DStringWriterTest.java137 "This is a test string".getChars(0, 21, c, 0);
H A DPipedReaderTest.java50 "Hello World".getChars(0, 11, c, 0);
H A DPrintWriterTest.java384 "Hello World".getChars(0, 11, schars, 0);
594 "Hello World".getChars(0, 11, schars, 0);
828 "Hello World".getChars(0, 11, schars, 0);
856 "Hello World".getChars(0, 11, schars, 0);

Completed in 4849 milliseconds

12