HomeSort by relevance Sort by last modified time
    Searched refs:GetChars (Results 1 - 25 of 44) 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 68 public static void getChars(CharSequence s, int start, int end,
73 ((String) s).getChars(start, end, dest, destoff);
75 ((StringBuffer) s).getChars(start, end, dest, destoff);
77 ((StringBuilder) s).getChars(start, end, dest, destoff);
78 else if (s instanceof GetChars)
79 ((GetChars) s).getChars(start, end, dest, destoff);
102 if (s instanceof GetChars || c == StringBuffer.class ||
112 getChars(s, start, segend, temp, 0);
160 if (s instanceof GetChars || c == StringBuffer.class |
    [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/chromium_org/v8/src/
v8conversions.cc 88 const uint8_t* begin = SeqOneByteString::cast(str)->GetChars();
93 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
115 const uint8_t* begin = SeqOneByteString::cast(str)->GetChars();
119 const uc16* begin = SeqTwoByteString::cast(str)->GetChars();
regexp-macro-assembler.cc 83 const uint8_t* data = ExternalAsciiString::cast(subject)->GetChars();
87 const uint8_t* data = SeqOneByteString::cast(subject)->GetChars();
94 data = ExternalTwoByteString::cast(subject)->GetChars();
97 data = SeqTwoByteString::cast(subject)->GetChars();
json-parser.h 131 const uint8_t* input_chars = seq_source_->GetChars() + position_ + 1;
544 Vector<const uint8_t> chars(seq_source_->GetChars() + beg_pos, length);
612 SinkChar* dest = seq_string->GetChars();
744 seq_source_->GetChars() + position_, length);
798 uint8_t* dest = SeqOneByteString::cast(*result)->GetChars();
json-stringifier.h 329 dest->GetChars() + 1,
770 SeqOneByteString::cast(*current_part_)->GetChars() + current_index_,
775 SeqTwoByteString::cast(*current_part_)->GetChars() + current_index_,
heap.cc     [all...]
objects-inl.h     [all...]
  /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...]
  /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...]
  /external/chromium_org/v8/tools/
grokdump.py     [all...]

Completed in 364 milliseconds

1 2