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

1 2 3 4 5 6 7 8 91011

  /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);
  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 33 chars getChars();
37 use(getChars().x);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
Replaceable.java 102 void getChars(int srcStart, int srcLimit, char dst[], int dstStart);
156 * getChars(start, limit, text, 0);
ReplaceableString.java 118 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) {
120 buf.getChars(srcStart, srcLimit, dst, dstStart);
175 getChars(start, limit, text, 0);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
Replaceable.java 106 void getChars(int srcStart, int srcLimit, char dst[], int dstStart);
162 * getChars(start, limit, text, 0);
ReplaceableString.java 126 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) {
128 buf.getChars(srcStart, srcLimit, dst, dstStart);
186 getChars(start, limit, text, 0);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/array/
CharArr.java 34 public char[] getChars() {
  /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());
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
StringReader.java 28 in.getChars(position, position + length, b, offset);
  /art/test/020-string/src/
Main.java 128 src.getChars(2, 9, tmp, 0);
135 src.getChars(-1, 9, dst, 0);
142 src.getChars(2, 19, dst, 0);
149 src.getChars(2, 1, dst, 0);
156 src.getChars(2, 10, dst, 0);
162 src.getChars(2, 9, dst, 0);
  /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);
StringTest.java 451 "yes".getChars(srcBegin, srcEnd, new char[256], 0);
464 "abcd".getChars(0, 1, dst, 0);
466 "abcd".getChars(3, 4, dst, 0);
469 "abcd".getChars(0, 4, dst, 0);
473 "abcd".getChars(0, 0, new char[0], 0); // dstBegin == 0 is ok if copying zero chars
474 "abcd".getChars(0, 0, new char[1], 1); // dstBegin == 1 is ok if copying zero chars
475 "".getChars(0, 0, new char[0], 0);
476 "abcd".getChars(1, 1, new char[1], 0);
477 "abcd".getChars(1, 1, new char[1], 1);
506 s.getChars(srcBegin, srcEnd, dst, dstBegin)
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
Helpers.java 63 s.getChars(0, len, chars, j);
78 k.getChars(0, klen, chars, 0);
80 v.getChars(0, vlen, chars, klen + 1);
  /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 {
  /external/guava/guava-tests/benchmark/com/google/common/base/
StringsRepeatBenchmark.java 67 string.getChars(0, len, strCopy, 0);
94 string.getChars(0, len, array, i);
103 string.getChars(0, len, array, 0);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UCharacterNameReader.java 68 char token[] = ICUBinary.getChars(m_byteBuffer_, count, 0);
78 char group[] = ICUBinary.getChars(m_byteBuffer_, count, 0);
171 char factor[] = ICUBinary.getChars(m_byteBuffer_, variant, 0);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCharacterNameReader.java 68 char token[] = ICUBinary.getChars(m_byteBuffer_, count, 0);
78 char group[] = ICUBinary.getChars(m_byteBuffer_, count, 0);
171 char factor[] = ICUBinary.getChars(m_byteBuffer_, variant, 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);
  /external/guava/guava/src/com/google/common/escape/
CharEscaper.java 114 s.getChars(lastEscape, index, dest, destIndex);
135 s.getChars(lastEscape, slen, dest, destIndex);
  /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-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
NewInstanceStringDebuggee.java 38 TEST_STRING.getChars(0, TEST_STRING.length(), CHAR_ARRAY, 0);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTextLiteral.java 93 public char[] getChars()

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 91011