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

  /cts/tests/tests/text/src/android/text/cts/
GetCharsTest.java 22 import android.text.GetChars;
37 // Returns an array of three GetChars objects, of three different classes:
39 private static GetChars[] makeGetChars(String s) {
40 return new GetChars[]{
48 final GetChars[] getCharsCases = makeGetChars("\uD83D\uDE00"); // U+1F600 GRINNING FACE
49 for (GetChars getChars : getCharsCases) {
50 final char[] target = new char[getChars.length()];
51 getChars.getChars(0, getChars.length(), target, 0)
    [all...]
TextUtilsTest.java 42 import android.text.GetChars;
    [all...]
  /external/v8/src/objects/
string-inl.h 233 string->GetChars() + from, length, isolate->heap()->HashSeed())),
383 SeqOneByteString::cast(string)->GetChars() + slice_offset,
389 SeqTwoByteString::cast(string)->GetChars() + slice_offset,
395 ExternalOneByteString::cast(string)->GetChars() + slice_offset,
401 ExternalTwoByteString::cast(string)->GetChars() + slice_offset,
464 uint8_t* SeqOneByteString::GetChars() {
472 uc16* SeqTwoByteString::GetChars() {
598 const uint8_t* ExternalOneByteString::GetChars() {
604 return GetChars()[index];
633 const uint16_t* ExternalTwoByteString::GetChars() { return resource()->data();
    [all...]
string.h 512 inline uint8_t* GetChars();
556 inline uc16* GetChars();
777 inline const uint8_t* GetChars();
815 inline const uint16_t* GetChars();
    [all...]
bigint.cc     [all...]
  /external/v8/src/regexp/
regexp-macro-assembler.cc 145 SeqOneByteString::cast(subject)->GetChars() + start_index);
148 SeqTwoByteString::cast(subject)->GetChars() + start_index);
151 ExternalOneByteString::cast(subject)->GetChars() + start_index);
155 ExternalTwoByteString::cast(subject)->GetChars() + start_index);
  /external/v8/src/builtins/
builtins-trace.cc 37 memcpy(buf_, Handle<SeqOneByteString>::cast(string)->GetChars(), len);
builtins-string.cc 112 CopyChars(result->GetChars(), one_byte_buffer.data(), one_byte_buffer.size());
113 CopyChars(result->GetChars() + one_byte_buffer.size(), two_byte_buffer.data(),
468 reinterpret_cast<char*>(result->GetChars()),
  /external/v8/src/
intl.cc 182 dest_length = case_converter(reinterpret_cast<UChar*>(result->GetChars()),
214 uint8_t* dst_data = SeqOneByteString::cast(dst)->GetChars();
292 uint8_t* dest = result->GetChars();
297 FastAsciiConvert<false>(reinterpret_cast<char*>(result->GetChars()),
string-builder-inl.h 189 Handle<SeqOneByteString>::cast(string)->GetChars() + offset);
192 Handle<SeqTwoByteString>::cast(string)->GetChars() + offset);
string-builder.cc 206 uint8_t* char_buffer = seq->GetChars();
218 uc16* char_buffer = seq->GetChars();
uri.cc 197 CopyChars(result->GetChars(), one_byte_buffer.data(), one_byte_buffer.size());
198 CopyChars(result->GetChars() + one_byte_buffer.size(), two_byte_buffer.data(),
json-parser.cc 264 const uint8_t* input_chars = seq_source_->GetChars() + position_ + 1;
672 Vector<const uint8_t> chars(seq_source_->GetChars() + beg_pos, length);
732 SinkChar* dest = seq_string->GetChars();
884 Vector<const uint8_t> string_vector(seq_source_->GetChars() + position_,
934 uint8_t* dest = SeqOneByteString::cast(*result)->GetChars();
perf-jit.cc 299 return {reinterpret_cast<char*>(str->GetChars()),
objects.cc     [all...]
value-serializer.cc     [all...]
  /external/v8/src/runtime/
runtime-strings.cc 328 StringBuilderConcatHelper(*special, answer->GetChars(),
336 StringBuilderConcatHelper(*special, answer->GetChars(),
395 uc16* sink = answer->GetChars();
553 Vector<uint8_t>(result->GetChars(), string_length));
562 Vector<uc16>(result->GetChars(), string_length));
  /external/v8/src/heap/
factory.cc 606 CopyChars(SeqOneByteString::cast(*result)->GetChars(), string.start(),
639 uint16_t* data = result->GetChars();
653 reinterpret_cast<const char*>(str->GetChars() + begin);
679 ascii_data = reinterpret_cast<const char*>(str->GetChars() + begin);
684 uint16_t* data = result->GetChars();
703 CopyChars(result->GetChars(), string, length);
709 CopyChars(result->GetChars(), string, length);
806 MemCopy(answer->GetChars(), str.start(), str.length() * kUC16Size);
    [all...]
  /art/runtime/native/
java_lang_String.cc 89 soa.Decode<mirror::String>(java_this)->GetChars(start, end, char_array, index);
  /external/v8/src/parsing/
scanner-character-streams.cc 56 return {&string_->GetChars()[start_offset_ + Min(length_, pos)],
57 &string_->GetChars()[start_offset_ + length_]};
708 ExternalOneByteString::cast(*data)->GetChars() + start_offset,
713 ExternalTwoByteString::cast(*data)->GetChars() + start_offset,
  /art/runtime/mirror/
string.h 189 void GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index)
string.cc 345 void String::GetChars(int32_t start, int32_t end, Handle<CharArray> array, int32_t index) {
  /external/v8/tools/
grokdump.py     [all...]
  /art/runtime/interpreter/
unstarted_runtime.cc     [all...]

Completed in 411 milliseconds