/aosp_15_r20/art/runtime/mirror/ |
H A D | array.cc | 123 ObjPtr<PrimitiveArray<T>> PrimitiveArray<T>::Alloc(Thread* self, size_t length) { in Alloc() 127 GetClassRoot<PrimitiveArray<T>>(runtime->GetClassLinker()), in Alloc() 131 return ObjPtr<PrimitiveArray<T>>::DownCast(raw_array); in Alloc() 163 template class PrimitiveArray<uint8_t>; // BooleanArray variable 164 template class PrimitiveArray<int8_t>; // ByteArray variable 165 template class PrimitiveArray<uint16_t>; // CharArray variable 166 template class PrimitiveArray<double>; // DoubleArray variable 167 template class PrimitiveArray<float>; // FloatArray variable 168 template class PrimitiveArray<int32_t>; // IntArray variable 169 template class PrimitiveArray<int64_t>; // LongArray variable [all …]
|
H A D | array.h | 154 class MANAGED PrimitiveArray : public Array { 167 EXPORT static ObjPtr<PrimitiveArray<T>> Alloc(Thread* self, size_t length) 170 EXPORT static ObjPtr<PrimitiveArray<T>> AllocateAndFill(Thread* self, 209 void Memmove(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count) 217 EXPORT void Memcpy(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count) 221 DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray); 225 extern template class PrimitiveArray<uint8_t>; // BooleanArray 226 extern template class PrimitiveArray<int8_t>; // ByteArray 227 extern template class PrimitiveArray<uint16_t>; // CharArray 228 extern template class PrimitiveArray<double>; // DoubleArray [all …]
|
H A D | array-inl.h | 68 inline T PrimitiveArray<T>::Get(int32_t i) { in Get() 77 inline void PrimitiveArray<T>::Set(int32_t i, T value) { in Set() 87 inline void PrimitiveArray<T>::Set(int32_t i, T value) { in Set() 97 inline void PrimitiveArray<T>::SetWithoutChecks(int32_t i, T value) { in SetWithoutChecks() 132 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, in Memmove() 133 ObjPtr<PrimitiveArray<T>> src, in Memmove() 194 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, in Memcpy() 195 ObjPtr<PrimitiveArray<T>> src, in Memcpy()
|
H A D | array-alloc-inl.h | 170 inline ObjPtr<PrimitiveArray<T>> PrimitiveArray<T>::AllocateAndFill(Thread* self, in AllocateAndFill() 174 Handle<PrimitiveArray<T>> arr(hs.NewHandle(PrimitiveArray<T>::Alloc(self, length))); in AllocateAndFill()
|
H A D | object.h | 52 template<class T> class PrimitiveArray; variable 53 using BooleanArray = PrimitiveArray<uint8_t>; 54 using ByteArray = PrimitiveArray<int8_t>; 55 using CharArray = PrimitiveArray<uint16_t>; 56 using DoubleArray = PrimitiveArray<double>; 57 using FloatArray = PrimitiveArray<float>; 58 using IntArray = PrimitiveArray<int32_t>; 59 using LongArray = PrimitiveArray<int64_t>; 60 using ShortArray = PrimitiveArray<int16_t>;
|
H A D | var_handle.cc | 1038 auto primitive_array = ObjPtr<PrimitiveArray<T>>::DownCast(target_array); in GetElementAddress()
|
/aosp_15_r20/art/runtime/ |
H A D | class_root.h | 51 template<typename T> class PrimitiveArray; variable 91 … "[Z", mirror::PrimitiveArray<uint8_t>) … 92 … "[B", mirror::PrimitiveArray<int8_t>) … 93 … "[C", mirror::PrimitiveArray<uint16_t>) … 94 … "[D", mirror::PrimitiveArray<double>) … 95 … "[F", mirror::PrimitiveArray<float>) … 96 … "[I", mirror::PrimitiveArray<int32_t>) … 97 … "[J", mirror::PrimitiveArray<int64_t>) … 98 … "[S", mirror::PrimitiveArray<int16_t>) …
|
H A D | runtime.h | 81 template<class T> class PrimitiveArray; variable 82 using ByteArray = PrimitiveArray<int8_t>;
|
H A D | thread.h | 78 template<class T> class PrimitiveArray; variable 79 using IntArray = PrimitiveArray<int32_t>;
|
/aosp_15_r20/external/gson/gson/src/test/java/com/google/gson/functional/ |
H A D | ObjectTest.java | 44 import com.google.gson.common.TestTypes.PrimitiveArray; 327 PrimitiveArray target = gson.fromJson(json, PrimitiveArray.class); in testPrimitiveArrayInAnObjectDeserialization() 379 PrimitiveArray target = new PrimitiveArray(new long[] { 1L, 2L, 3L }); in testPrimitiveArrayFieldSerialization()
|
H A D | PrintFormattingTest.java | 28 import com.google.gson.common.TestTypes.PrimitiveArray; 54 list.add(new PrimitiveArray()); in testCompactFormattingLeavesNoWhiteSpace()
|
/aosp_15_r20/external/auto/value/src/test/java/com/google/auto/value/extension/toprettystring/ |
H A D | ToPrettyStringTest.java | 87 abstract static class PrimitiveArray { class in ToPrettyStringTest 98 PrimitiveArray valueType = in primitiveArray() 115 PrimitiveArray valueType = new AutoValue_ToPrettyStringTest_PrimitiveArray(new long[0]); in primitiveArray_empty() 126 PrimitiveArray valueType = new AutoValue_ToPrettyStringTest_PrimitiveArray(null); in primitiveArray_null()
|
/aosp_15_r20/external/gson/gson/src/test/java/com/google/gson/common/ |
H A D | TestTypes.java | 200 public static class PrimitiveArray { class in TestTypes 203 public PrimitiveArray() { in PrimitiveArray() method in TestTypes.PrimitiveArray 207 public PrimitiveArray(long[] longArray) { in PrimitiveArray() method in TestTypes.PrimitiveArray
|
/aosp_15_r20/art/runtime/entrypoints/quick/ |
H A D | runtime_entrypoints_list.h | 34 template<class T> class PrimitiveArray; variable 35 using ByteArray = PrimitiveArray<int8_t>; 36 using CharArray = PrimitiveArray<uint16_t>;
|
/aosp_15_r20/external/protobuf/csharp/compatibility_tests/v3.0.0/protos/csharp/protos/ |
H A D | unittest_issues.proto | 70 repeated int32 PrimitiveArray = 2 [deprecated = true]; field
|
/aosp_15_r20/external/cronet/third_party/protobuf/csharp/compatibility_tests/v3.0.0/protos/csharp/protos/ |
H A D | unittest_issues.proto | 70 repeated int32 PrimitiveArray = 2 [deprecated = true]; field
|
/aosp_15_r20/art/dex2oat/interpreter/ |
H A D | interpreter_switch_impl1.cc | 76 ObjPtr<mirror::PrimitiveArray<T>> array, in RecordArrayElementsInTransactionImpl()
|
/aosp_15_r20/external/protobuf/csharp/protos/ |
H A D | unittest_issues.proto | 71 repeated int32 PrimitiveArray = 2 [deprecated = true]; field
|
/aosp_15_r20/external/cronet/third_party/protobuf/csharp/protos/ |
H A D | unittest_issues.proto | 71 repeated int32 PrimitiveArray = 2 [deprecated = true]; field
|
/aosp_15_r20/art/runtime/native/ |
H A D | sun_misc_Unsafe.cc | 328 ObjPtr<mirror::PrimitiveArray<T>> array, in copyToArray() 342 ObjPtr<mirror::PrimitiveArray<T>> array, in copyFromArray()
|
/aosp_15_r20/external/moshi/kotlin/tests/codegen-only/src/test/kotlin/com/squareup/moshi/kotlin/codegen/ |
H A D | GeneratedAdaptersTest.kt | 189 val adapter = moshi.adapter<PrimitiveArray>() in <lambda>() 201 data class PrimitiveArray(val ints: IntArray) in <lambda>() class in com.squareup.moshi.kotlin.codegen.GeneratedAdaptersTest
|
/aosp_15_r20/art/runtime/interpreter/ |
H A D | unstarted_runtime.cc | 852 ObjPtr<mirror::PrimitiveArray<T>> src = ObjPtr<mirror::PrimitiveArray<T>>::DownCast(src_array); in PrimitiveArrayCopy() 853 ObjPtr<mirror::PrimitiveArray<T>> dst = ObjPtr<mirror::PrimitiveArray<T>>::DownCast(dst_array); in PrimitiveArrayCopy()
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/jni/ |
D | CHANGELOG.md | 54 - `AutoByte/PrimitiveArray.commit()` now returns `Result`. (#275)
|
/aosp_15_r20/external/rust/android-crates-io/crates/jni/ |
D | CHANGELOG.md | 121 - `AutoByte/PrimitiveArray.commit()` now returns `Result`. (#275)
|
/aosp_15_r20/external/chromium-trace/catapult/systrace/systrace/test_data/ |
H A D | profile-chrome_systrace_perf_chrome_data | 1 … "parent": 1522}, "2855": {"category": "Java", "name": "art::mirror::PrimitiveArray<unsigned char>…
|