HomeSort by relevance Sort by last modified time
    Searched refs:GetChars (Results 1 - 25 of 37) 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 75 public static void getChars(CharSequence s, int start, int end,
80 ((String) s).getChars(start, end, dest, destoff);
82 ((StringBuffer) s).getChars(start, end, dest, destoff);
84 ((StringBuilder) s).getChars(start, end, dest, destoff);
85 else if (s instanceof GetChars)
86 ((GetChars) s).getChars(start, end, dest, destoff);
109 if (s instanceof GetChars || c == StringBuffer.class ||
119 getChars(s, start, segend, temp, 0);
167 if (s instanceof GetChars || c == StringBuffer.class |
    [all...]
SpannableStringBuilder.java 33 public class SpannableStringBuilder implements CharSequence, GetChars, Spannable, Editable,
64 TextUtils.getChars(text, start, end, mText, 0);
360 TextUtils.getChars(cs, csStart, csEnd, mText, start);
914 public void getChars(int start, int end, char[] dest, int destoff) {
915 checkRange("getChars", start, end);
    [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);
  /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;
139 implements CharSequence, GetChars
180 getChars(start, end, buf, 0);
188 public void getChars(int start, int end, char[] dest, int off) {
189 TextUtils.getChars(mSource, start, end, dest, off);
  /external/chromium_org/v8/src/
regexp-macro-assembler.cc 52 const uint8_t* data = ExternalOneByteString::cast(subject)->GetChars();
56 const uint8_t* data = SeqOneByteString::cast(subject)->GetChars();
63 data = ExternalTwoByteString::cast(subject)->GetChars();
66 data = SeqTwoByteString::cast(subject)->GetChars();
json-parser.h 108 const uint8_t* input_chars = seq_source_->GetChars() + position_ + 1;
554 Vector<const uint8_t> chars(seq_source_->GetChars() + beg_pos, length);
621 SinkChar* dest = seq_string->GetChars();
754 seq_source_->GetChars() + position_, length);
809 uint8_t* dest = SeqOneByteString::cast(*result)->GetChars();
factory.cc 220 CopyChars(SeqOneByteString::cast(*result)->GetChars(),
252 uint16_t* data = result->GetChars();
275 CopyChars(result->GetChars(), start, length);
284 CopyChars(result->GetChars(), start, length);
316 Vector<const uint8_t>(string->GetChars() + offset, length),
444 uint8_t* dest = str->GetChars();
451 uc16* dest = str->GetChars();
464 SinkChar* sink = result->GetChars();
519 uint8_t* dest = result->GetChars();
523 ? Handle<ExternalOneByteString>::cast(left)->GetChars()
    [all...]
json-stringifier.h 313 dest->GetChars() + 1,
797 SeqOneByteString::cast(*current_part_)->GetChars() + current_index_,
802 SeqTwoByteString::cast(*current_part_)->GetChars() + current_index_,
objects-inl.h 548 const uint8_t* chars = string_->GetChars() + from_;
    [all...]
objects.cc     [all...]
objects.h     [all...]
runtime.cc     [all...]
  /external/chromium_org/v8/tools/
grokdump.py     [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...]
  /external/chromium_org/v8/src/heap/
heap.cc     [all...]
  /frameworks/base/core/java/android/widget/
TextView.java 50 import android.text.GetChars;
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 

Completed in 2147 milliseconds

1 2