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

1 2 3

  /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 78 public static void getChars(CharSequence s, int start, int end,
83 ((String) s).getChars(start, end, dest, destoff);
85 ((StringBuffer) s).getChars(start, end, dest, destoff);
87 ((StringBuilder) s).getChars(start, end, dest, destoff);
88 else if (s instanceof GetChars)
89 ((GetChars) s).getChars(start, end, dest, destoff);
112 if (s instanceof GetChars || c == StringBuffer.class ||
122 getChars(s, start, segend, temp, 0);
170 if (s instanceof GetChars || c == StringBuffer.class |
    [all...]
  /external/v8/src/
string-builder.cc 27 uint8_t* char_buffer = seq->GetChars();
39 uc16* char_buffer = seq->GetChars();
uri.cc 194 CopyChars(result->GetChars(), one_byte_buffer.ToConstVector().start(),
196 CopyChars(result->GetChars() + one_byte_buffer.length(),
json-parser.cc 225 const uint8_t* input_chars = seq_source_->GetChars() + position_ + 1;
564 Vector<const uint8_t> chars(seq_source_->GetChars() + beg_pos, length);
624 SinkChar* dest = seq_string->GetChars();
744 Vector<const uint8_t> string_vector(seq_source_->GetChars() + position_,
798 uint8_t* dest = SeqOneByteString::cast(*result)->GetChars();
string-builder.h 329 Handle<SeqOneByteString>::cast(string)->GetChars() + offset);
332 Handle<SeqTwoByteString>::cast(string)->GetChars() + offset);
factory.cc 253 CopyChars(SeqOneByteString::cast(*result)->GetChars(),
285 uint16_t* data = result->GetChars();
306 CopyChars(result->GetChars(), string, length);
315 CopyChars(result->GetChars(), string, length);
357 Vector<const uint8_t>(string->GetChars() + offset, length),
485 uint8_t* dest = str->GetChars();
492 uc16* dest = str->GetChars();
505 SinkChar* sink = result->GetChars();
560 uint8_t* dest = result->GetChars();
564 ? Handle<ExternalOneByteString>::cast(left)->GetChars()
    [all...]
objects-inl.h 571 const uint8_t* chars = string_->GetChars() + from_;
    [all...]
  /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);
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 23 import android.text.GetChars;
58 ((GetChars) newText).getChars(1, 4, c2, 2);
  /external/v8/src/wasm/
wasm-debug.cc 36 const byte *bytes_start = wasm_bytes->GetChars();
75 module_bytes->GetChars() + offset_and_length.first,
92 wasm_bytes->GetChars(), wasm_bytes->length(), kZeroHashSeed);
wasm-module.cc     [all...]
  /external/v8/src/regexp/
regexp-macro-assembler.cc 141 SeqOneByteString::cast(subject)->GetChars() + start_index);
144 SeqTwoByteString::cast(subject)->GetChars() + start_index);
147 ExternalOneByteString::cast(subject)->GetChars() + start_index);
150 ExternalTwoByteString::cast(subject)->GetChars() + start_index);
  /external/v8/src/runtime/
runtime-strings.cc 477 StringBuilderConcatHelper(*special, answer->GetChars(),
485 StringBuilderConcatHelper(*special, answer->GetChars(),
545 uc16* sink = answer->GetChars();
704 Vector<uint8_t>(result->GetChars(), string_length));
713 Vector<uc16>(result->GetChars(), string_length));
    [all...]
runtime-i18n.cc 862 dest_length = case_converter(reinterpret_cast<UChar*>(result->GetChars()),
    [all...]
  /art/runtime/mirror/
string.cc 270 void String::GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index) {
string.h 157 void GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index)
  /art/runtime/native/
java_lang_String.cc 88 soa.Decode<mirror::String*>(java_this)->GetChars(start, end, char_array, index);
  /external/v8/tools/
grokdump.py     [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtilsTest.java 32 import android.text.GetChars;
695 // check whether GetChars.getChars() is called and with the proper parameters.
700 TextUtils.getChars(mockGetChars, start, end, destResult, destOff);
714 TextUtils.getChars(mockCharSequence, start, end, destResult, destOff);
729 TextUtils.getChars(mockCharSequence, start, end, destResult, destOff);
    [all...]

Completed in 534 milliseconds

1 2 3