/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);
|
/external/clang/test/SemaTemplate/ |
array-to-pointer-decay.cpp | 33 chars getChars(); 37 use(getChars().x);
|
/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);
|
/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);
|
/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);
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
TextViewTest.java | 21 import android.text.GetChars; 50 ((GetChars) newText).getChars(1, 4, c2, 2);
|
/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 | 156 str.getChars(pos, end, buffer, offset);
|
Writer.java | 165 str.getChars(offset, offset + count, buf, 0);
|
/cts/tests/tests/text/src/android/text/cts/ |
AlteredCharSequenceTest.java | 64 mAlteredCharSequence.getChars(start, end, dest, off); 74 mAlteredCharSequence.getChars(start, end, dest, off); 80 mAlteredCharSequence.getChars(start, end, dest, off);
|
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/ |
CharEscaper.java | 151 s.getChars(lastEscape, index, dest, destIndex); 172 s.getChars(lastEscape, slen, dest, destIndex);
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
CharEscaper.java | 152 s.getChars(lastEscape, index, dest, destIndex); 173 s.getChars(lastEscape, slen, dest, destIndex);
|
/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)
|
/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);
|