/frameworks/base/core/java/android/text/ |
GetChars.java | 21 * getChars() method like the one in String that is faster than 24 public interface GetChars 28 * Exactly like String.getChars(): copy chars <code>start</code> 32 public void getChars(int start, int end, char[] dest, int destoff);
|
AlteredCharSequence.java | 26 implements CharSequence, GetChars 105 public void getChars(int start, int end, char[] dest, int off) { 106 TextUtils.getChars(mSource, start, end, dest, off); 119 getChars(0, len, ret, 0);
|
InputFilter.java | 55 TextUtils.getChars(source, start, end, v, 0);
|
TextUtils.java | 59 public static void getChars(CharSequence s, int start, int end, 64 ((String) s).getChars(start, end, dest, destoff); 66 ((StringBuffer) s).getChars(start, end, dest, destoff); 68 ((StringBuilder) s).getChars(start, end, dest, destoff); 69 else if (s instanceof GetChars) 70 ((GetChars) s).getChars(start, end, dest, destoff); 93 if (s instanceof GetChars || c == StringBuffer.class || 103 getChars(s, start, segend, temp, 0); 151 if (s instanceof GetChars || c == StringBuffer.class | [all...] |
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/ |
CharSinkTester.java | 48 public abstract char[] getChars() throws Exception; 97 assertArrayEquals(expected, getChars()); 110 assertArrayEquals(expected, getChars()); 122 assertArrayEquals(expected, getChars()); 135 assertArrayEquals(expected, getChars()); 161 assertArrayEquals(expected, getChars()); 175 assertArrayEquals(expected, getChars()); 191 assertArrayEquals(expectedChars, getChars());
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldStringBufferTest.java | 51 buf2.getChars(-1, 0, new char[5], 2); 58 buf2.getChars(0, -1, new char[5], 2); 65 buf2.getChars(0, -1, new char[5], 2); 72 buf2.getChars(2, 1, new char[5], 2); 79 buf2.getChars(0, 6, new char[5], 2); 86 buf2.getChars(0, 6, new char[10], 5);
|
OldStringTest.java | 116 "Hello World".getChars(-1, 1, null, 0); 123 "Hello World".getChars(6, 2, null, 0); 130 "Hello World".getChars(2, 10, new char[10], 4);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
WriterTesterTest.java | 84 @Override public char[] getChars() throws Exception { 97 @Override public char[] getChars() throws Exception { 127 @Override public char[] getChars() throws Exception { 141 @Override public char[] getChars() throws Exception { 190 @Override public char[] getChars() throws Exception {
|
PipedWriterTest.java | 81 "HelloWorld".getChars(0, 10, buf, 0); 99 "HelloWorld".getChars(0, 10, buf, 0); 118 "HelloWorld".getChars(0, 10, buf, 0); 137 "HelloWorld".getChars(0, 10, buf, 0); 182 "HelloWorld".getChars(0, 10, buf, 0);
|
CharArrayReaderTest.java | 148 str.getChars(0, str.length(), data, 0);
|
/frameworks/base/core/java/android/text/method/ |
ReplacementTransformationMethod.java | 21 import android.text.GetChars; 109 implements CharSequence, GetChars { 139 getChars(start, end, c, 0); 146 getChars(0, length(), c, 0); 150 public void getChars(int start, int end, char[] dest, int off) { 151 TextUtils.getChars(mSource, start, end, dest, off);
|
PasswordTransformationMethod.java | 24 import android.text.GetChars; 140 implements CharSequence, GetChars 181 getChars(start, end, buf, 0); 189 public void getChars(int start, int end, char[] dest, int off) { 190 TextUtils.getChars(mSource, start, end, dest, off);
|
/libcore/luni/src/main/java/java/io/ |
BufferedWriter.java | 275 str.getChars(offset, offset + count, chars, 0); 284 str.getChars(offset, offset + available, buf, pos); 295 str.getChars(offset, offset + available, chars, 0); 299 str.getChars(offset, offset + available, buf, pos);
|
StringReader.java | 166 str.getChars(pos, end, buf, offset);
|
Writer.java | 165 str.getChars(offset, offset + count, buf, 0);
|
/cts/tests/tests/text/src/android/text/cts/ |
AlteredCharSequenceTest.java | 66 method = "getChars", 78 mAlteredCharSequence.getChars(start, end, dest, off); 88 mAlteredCharSequence.getChars(start, end, dest, off); 94 mAlteredCharSequence.getChars(start, end, dest, off);
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemTextLiteral.java | 93 public char[] getChars()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToSAXHandler.java | 127 characters.getChars(0,len, m_charsBuff, 0); 148 comment.getChars(0,len, m_charsBuff, 0);
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_StringReader.java | 159 str.getChars(pos, end, buf, offset);
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
XMLString.java | 122 public abstract void getChars(int srcBegin, int srcEnd, char dst[],
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XStringForChars.java | 211 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin)
|
XString.java | 277 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) 279 str().getChars(srcBegin, srcEnd, dst, dstBegin); [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
PYXScanner.java | 55 s.getChars(0, size, buff, 0);
|
/libcore/luni/src/main/java/java/nio/ |
CharSequenceAdapter.java | 85 sequence.toString().getChars(position, newPosition, dst, dstOffset);
|
/libcore/support/src/test/java/tests/support/ |
Support_StringReader.java | 159 str.getChars(pos, end, buf, offset);
|