Home
last modified time | relevance | path

Searched refs:PrimitiveArray (Results 1 – 25 of 42) sorted by relevance

12

/aosp_15_r20/art/runtime/mirror/
H A Darray.cc123 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 Darray.h154 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 Darray-inl.h68 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 Darray-alloc-inl.h170 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 Dobject.h52 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 Dvar_handle.cc1038 auto primitive_array = ObjPtr<PrimitiveArray<T>>::DownCast(target_array); in GetElementAddress()
/aosp_15_r20/art/runtime/
H A Dclass_root.h51 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 Druntime.h81 template<class T> class PrimitiveArray; variable
82 using ByteArray = PrimitiveArray<int8_t>;
H A Dthread.h78 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 DObjectTest.java44 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 DPrintFormattingTest.java28 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 DToPrettyStringTest.java87 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 DTestTypes.java200 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 Druntime_entrypoints_list.h34 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 Dunittest_issues.proto70 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 Dunittest_issues.proto70 repeated int32 PrimitiveArray = 2 [deprecated = true]; field
/aosp_15_r20/art/dex2oat/interpreter/
H A Dinterpreter_switch_impl1.cc76 ObjPtr<mirror::PrimitiveArray<T>> array, in RecordArrayElementsInTransactionImpl()
/aosp_15_r20/external/protobuf/csharp/protos/
H A Dunittest_issues.proto71 repeated int32 PrimitiveArray = 2 [deprecated = true]; field
/aosp_15_r20/external/cronet/third_party/protobuf/csharp/protos/
H A Dunittest_issues.proto71 repeated int32 PrimitiveArray = 2 [deprecated = true]; field
/aosp_15_r20/art/runtime/native/
H A Dsun_misc_Unsafe.cc328 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 DGeneratedAdaptersTest.kt189 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 Dunstarted_runtime.cc852 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/
DCHANGELOG.md54 - `AutoByte/PrimitiveArray.commit()` now returns `Result`. (#275)
/aosp_15_r20/external/rust/android-crates-io/crates/jni/
DCHANGELOG.md121 - `AutoByte/PrimitiveArray.commit()` now returns `Result`. (#275)
/aosp_15_r20/external/chromium-trace/catapult/systrace/systrace/test_data/
H A Dprofile-chrome_systrace_perf_chrome_data1 … "parent": 1522}, "2855": {"category": "Java", "name": "art::mirror::PrimitiveArray<unsigned char>…

12