HomeSort by relevance Sort by last modified time
    Searched refs:getChars (Results 1 - 25 of 142) sorted by null

1 2 3 4 5 6

  /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;
98 assertArrayEquals(expected, getChars());
111 assertArrayEquals(expected, getChars());
123 assertArrayEquals(expected, getChars());
136 assertArrayEquals(expected, getChars());
162 assertArrayEquals(expected, getChars());
176 assertArrayEquals(expected, getChars());
192 assertArrayEquals(expectedChars, getChars());
  /libcore/support/src/test/java/org/apache/harmony/testframework/
CharSinkTester.java 48 public abstract char[] getChars() throws Exception;
98 assertArrayEquals(expected, getChars());
111 assertArrayEquals(expected, getChars());
123 assertArrayEquals(expected, getChars());
136 assertArrayEquals(expected, getChars());
162 assertArrayEquals(expected, getChars());
176 assertArrayEquals(expected, getChars());
192 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);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
WriterTesterTest.java 87 public char[] getChars() throws Exception {
102 public char[] getChars() throws Exception {
134 public char[] getChars() throws Exception {
150 public char[] getChars() throws Exception {
209 public char[] getChars() throws Exception {
PipedWriterTest.java 78 "HelloWorld".getChars(0, 10, buf, 0);
96 "HelloWorld".getChars(0, 10, buf, 0);
115 "HelloWorld".getChars(0, 10, buf, 0);
134 "HelloWorld".getChars(0, 10, buf, 0);
179 "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);
  /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/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 147 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/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
StringBuffer2Test.java 70 "char".getChars(0, 4, buf, 0);
298 * java.lang.StringBuffer#getChars(int, int, char[], int)
301 // Test for method void java.lang.StringBuffer.getChars(int, int, char
305 testBuffer.getChars(4, 8, buf, 2);
312 buf2.getChars(0, 0, new char[5], 2);
326 "char".getChars(0, 4, buf, 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);

Completed in 1038 milliseconds

1 2 3 4 5 6