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

  /art/runtime/
utf.h 36 typedef PrimitiveArray<uint16_t> CharArray;
78 int32_t ComputeUtf16Hash(mirror::CharArray* chars, int32_t offset, size_t char_count)
utf.cc 71 int32_t ComputeUtf16Hash(mirror::CharArray* chars, int32_t offset,
jni_internal.cc     [all...]
transaction_test.cc 328 mirror::CharArray* charArray = charArrayField->GetObject(h_klass.Get())->AsCharArray();
329 ASSERT_TRUE(charArray != nullptr);
330 ASSERT_EQ(charArray->GetLength(), 1);
331 ASSERT_EQ(charArray->GetWithoutChecks(0), 0u);
390 charArray->SetWithoutChecks<true>(0, 1u);
403 EXPECT_EQ(charArray->GetWithoutChecks(0), 0u);
class_linker_test.cc     [all...]
class_linker.cc 252 mirror::CharArray::SetArrayClass(char_array_class.Get());
    [all...]
  /art/runtime/mirror/
string-inl.h 36 inline CharArray* String::GetCharArray() {
37 return GetFieldObject<CharArray>(ValueOffset());
46 inline void String::SetArray(CharArray* new_array) {
string.h 57 CharArray* GetCharArray() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
120 void SetArray(CharArray* new_array) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
150 static String* Alloc(Thread* self, Handle<CharArray> array)
154 HeapReference<CharArray> array_;
string.cc 84 CharArray* array = const_cast<CharArray*>(string->GetCharArray());
119 Handle<CharArray> array(hs.NewHandle(CharArray::Alloc(self, utf16_length)));
126 String* String::Alloc(Thread* self, Handle<CharArray> array) {
object.h 44 typedef PrimitiveArray<uint16_t> CharArray;
159 CharArray* AsCharArray() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
object_test.cc 252 TestPrimitiveArray<CharArray>(class_linker_);
360 Handle<CharArray> char_array(hs.NewHandle(CharArray::Alloc(soa.Self(), 0)));
object-inl.h 293 inline CharArray* Object::AsCharArray() {
297 return down_cast<CharArray*>(this);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 43 CharArray = ARRAY(c_char, 3)
45 ca = CharArray("a", "b", "c")
48 # CharArray("abc")
49 self.assertRaises(TypeError, CharArray, "abc")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 43 CharArray = ARRAY(c_char, 3)
45 ca = CharArray("a", "b", "c")
48 # CharArray("abc")
49 self.assertRaises(TypeError, CharArray, "abc")
  /art/runtime/native/
java_lang_System.cc 173 System_arraycopyTUnchecked<mirror::CharArray, Primitive::kPrimChar>(env, javaSrc, srcPos,
  /art/runtime/interpreter/
interpreter_common.cc     [all...]
interpreter_common.h 53 using ::art::mirror::CharArray;
interpreter_goto_table_impl.cc     [all...]
interpreter_switch_impl.cc     [all...]
  /external/pdfium/core/src/fpdfdoc/
pdf_vt.h 326 CPVT_FloatRect CharArray();
doc_vt.cpp 98 return CTypeset(this).CharArray();
326 CPVT_FloatRect CTypeset::CharArray()
    [all...]
  /art/compiler/
image_writer.cc 588 auto* array = mirror::CharArray::Alloc(self, num_chars);
    [all...]

Completed in 554 milliseconds