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

1 2

  /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);
SpannedString.java 27 implements CharSequence, GetChars, Spanned
SpannableString.java 27 implements CharSequence, GetChars, Spannable
Editable.java 26 extends CharSequence, GetChars, Spannable, Appendable
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);
TextUtils.java 66 public static void getChars(CharSequence s, int start, int end,
71 ((String) s).getChars(start, end, dest, destoff);
73 ((StringBuffer) s).getChars(start, end, dest, destoff);
75 ((StringBuilder) s).getChars(start, end, dest, destoff);
76 else if (s instanceof GetChars)
77 ((GetChars) s).getChars(start, end, dest, destoff);
100 if (s instanceof GetChars || c == StringBuffer.class ||
110 getChars(s, start, segend, temp, 0);
158 if (s instanceof GetChars || c == StringBuffer.class |
    [all...]
SpannableStringBuilder.java 30 public class SpannableStringBuilder implements CharSequence, GetChars, Spannable, Editable,
61 TextUtils.getChars(text, start, end, mText, 0);
341 TextUtils.getChars(cs, csStart, csEnd, mText, start);
912 public void getChars(int start, int end, char[] dest, int destoff) {
913 checkRange("getChars", start, end);
935 getChars(0, len, buf, 0);
    [all...]
Layout.java     [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 21 import android.text.GetChars;
50 ((GetChars) newText).getChars(1, 4, c2, 2);
  /external/v8/src/
v8conversions.cc 87 const char* begin = SeqAsciiString::cast(str)->GetChars();
92 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
112 const char* begin = SeqAsciiString::cast(str)->GetChars();
116 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
regexp-macro-assembler.cc 84 const char* data = ExternalAsciiString::cast(subject)->GetChars();
88 char* data = SeqAsciiString::cast(subject)->GetChars();
95 data = ExternalTwoByteString::cast(subject)->GetChars();
98 data = SeqTwoByteString::cast(subject)->GetChars();
json-parser.h 396 Vector<const char> chars(seq_source_->GetChars() + beg_pos, length);
458 SinkChar* dest = seq_str->GetChars();
589 char* dest = SeqAsciiString::cast(*result)->GetChars();
heap.cc     [all...]
objects-inl.h     [all...]
objects.cc 871 char* dest = SeqAsciiString::cast(result)->GetChars();
884 uc16* dest = SeqTwoByteString::cast(result)->GetChars();
    [all...]
runtime.cc     [all...]
objects.h     [all...]
  /frameworks/base/core/java/android/text/method/
HideReturnsTransformationMethod.java 20 import android.text.GetChars;
SingleLineTransformationMethod.java 21 import android.text.GetChars;
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);
  /external/v8/tools/
grokdump.py 682 def GetChars(self):
689 return "\"%s\"" % self.GetChars()
701 def GetChars(self):
731 def GetChars(self):
747 def GetChars(self):
748 return self.left.GetChars() + self.right.GetChars()
763 return "<%s>" % self.to_string.GetChars()
837 return script_source.GetChars()[start:end]
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtilsTest.java 32 import android.text.GetChars;
698 // check whether GetChars.getChars() is called and with the proper parameters.
703 TextUtils.getChars(mockGetChars, start, end, destResult, destOff);
717 TextUtils.getChars(mockCharSequence, start, end, destResult, destOff);
732 TextUtils.getChars(mockCharSequence, start, end, destResult, destOff);
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 48 import android.text.GetChars;
    [all...]
  /prebuilts/sdk/12/
android.jar 

Completed in 1598 milliseconds

1 2