Home
last modified time | relevance | path

Searched refs:obj_array (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/google-breakpad/src/client/
H A Dminidump_file_writer_unittest.cc101 google_breakpad::TypedMDRVA<ObjectAndArrayStructure> obj_array(&writer); in WriteFile() local
102 ASSERT_TRUE(obj_array.AllocateObjectAndArray(count, in WriteFile()
104 obj_array.get()->count = count; in WriteFile()
110 ASSERT_TRUE(obj_array.CopyIndexAfterObject(i, &local, sizeof(local))); in WriteFile()
/aosp_15_r20/art/test/530-checker-peel-unroll/src/
H A DMain.java753 public void unrollingInstanceOf(int[] a, Object[] obj_array) { in unrollingInstanceOf() argument
755 if (obj_array[i] instanceof Integer) { in unrollingInstanceOf()
/aosp_15_r20/art/oatdump/
H A Doatdump.cc2153 ObjPtr<mirror::ObjectArray<mirror::Object>> obj_array = obj->AsObjectArray<mirror::Object>(); in DumpObject() local
2154 for (int32_t i = 0, length = obj_array->GetLength(); i < length; i++) { in DumpObject()
2155 ObjPtr<mirror::Object> value = obj_array->Get(i); in DumpObject()
2158 if (value == obj_array->Get(j)) { in DumpObject()
/aosp_15_r20/art/openjdkjvmti/
H A Dti_heap.cc1174 art::ObjPtr<art::mirror::ObjectArray<art::mirror::Object>> obj_array = in VisitArray() local
1176 for (auto elem_pair : art::ZipCount(obj_array->Iterate())) { in VisitArray()