HomeSort by relevance Sort by last modified time
    Searched refs:GetChars (Results 1 - 25 of 58) 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 89 public static void getChars(CharSequence s, int start, int end,
94 ((String) s).getChars(start, end, dest, destoff);
96 ((StringBuffer) s).getChars(start, end, dest, destoff);
98 ((StringBuilder) s).getChars(start, end, dest, destoff);
99 else if (s instanceof GetChars)
100 ((GetChars) s).getChars(start, end, dest, destoff);
123 if (s instanceof GetChars || c == StringBuffer.class ||
133 getChars(s, start, segend, temp, 0);
181 if (s instanceof GetChars || c == StringBuffer.class |
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
GetCharsTest.java 24 import android.text.GetChars;
36 // Returns an array of three GetChars objects, of three different classes:
38 private static GetChars[] makeGetChars(String s) {
39 return new GetChars[]{
47 final GetChars[] getCharsCases = makeGetChars("\uD83D\uDE00"); // U+1F600 GRINNING FACE
48 for (GetChars getChars : getCharsCases) {
49 final char[] target = new char[getChars.length()];
50 getChars.getChars(0, getChars.length(), target, 0)
    [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;
565 Vector<const uint8_t> chars(seq_source_->GetChars() + beg_pos, length);
625 SinkChar* dest = seq_string->GetChars();
745 Vector<const uint8_t> string_vector(seq_source_->GetChars() + position_,
799 uint8_t* dest = SeqOneByteString::cast(*result)->GetChars();
factory.cc 314 CopyChars(SeqOneByteString::cast(*result)->GetChars(),
346 uint16_t* data = result->GetChars();
360 const char* start = reinterpret_cast<const char*>(str->GetChars() + begin);
382 reinterpret_cast<const char*>(str->GetChars() + begin);
385 uint16_t* data = result->GetChars();
406 CopyChars(result->GetChars(), string, length);
415 CopyChars(result->GetChars(), string, length);
457 Vector<const uint8_t>(string->GetChars() + offset, length),
611 uint8_t* dest = str->GetChars();
618 uc16* dest = str->GetChars();
    [all...]
string-builder.h 330 Handle<SeqOneByteString>::cast(string)->GetChars() + offset);
333 Handle<SeqTwoByteString>::cast(string)->GetChars() + offset);
  /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 23 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/v8/src/regexp/
regexp-macro-assembler.cc 144 SeqOneByteString::cast(subject)->GetChars() + start_index);
147 SeqTwoByteString::cast(subject)->GetChars() + start_index);
150 ExternalOneByteString::cast(subject)->GetChars() + start_index);
154 ExternalTwoByteString::cast(subject)->GetChars() + start_index);
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 33 import android.text.GetChars;
89 ((GetChars) newText).getChars(1, 4, c2, 2);
  /external/v8/src/runtime/
runtime-strings.cc 314 StringBuilderConcatHelper(*special, answer->GetChars(),
322 StringBuilderConcatHelper(*special, answer->GetChars(),
382 uc16* sink = answer->GetChars();
541 Vector<uint8_t>(result->GetChars(), string_length));
550 Vector<uc16>(result->GetChars(), string_length));
runtime-i18n.cc 850 dest_length = case_converter(reinterpret_cast<UChar*>(result->GetChars()),
    [all...]
  /art/runtime/native/
java_lang_String.cc 96 soa.Decode<mirror::String>(java_this)->GetChars(start, end, char_array, index);
  /art/runtime/mirror/
string.h 178 void GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index)
string.cc 397 void String::GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index) {
  /external/v8/src/wasm/
wasm-code-specialization.cc 50 func_bytes = comp_mod->module_bytes()->GetChars() +
wasm-objects.cc 204 const byte* module_start = compiled_module->module_bytes()->GetChars();
    [all...]
wasm-debug.cc 61 Vector<const byte> bytes(bytes_str->GetChars(), bytes_str->length());
  /external/v8/tools/
grokdump.py     [all...]

Completed in 1863 milliseconds

1 2 3