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

  /art/runtime/mirror/
array.cc 146 PrimitiveArray<T>* PrimitiveArray<T>::Alloc(Thread* self, size_t length) {
149 return down_cast<PrimitiveArray<T>*>(raw_array);
152 template <typename T> Class* PrimitiveArray<T>::array_class_ = NULL;
155 template class PrimitiveArray<uint8_t>; // BooleanArray
156 template class PrimitiveArray<int8_t>; // ByteArray
157 template class PrimitiveArray<uint16_t>; // CharArray
158 template class PrimitiveArray<double>; // DoubleArray
159 template class PrimitiveArray<float>; // FloatArray
160 template class PrimitiveArray<int32_t>; // IntArra
    [all...]
object.h 39 template<class T> class PrimitiveArray;
40 typedef PrimitiveArray<uint8_t> BooleanArray;
41 typedef PrimitiveArray<int8_t> ByteArray;
42 typedef PrimitiveArray<uint16_t> CharArray;
43 typedef PrimitiveArray<double> DoubleArray;
44 typedef PrimitiveArray<float> FloatArray;
45 typedef PrimitiveArray<int32_t> IntArray;
46 typedef PrimitiveArray<int64_t> LongArray;
47 typedef PrimitiveArray<int16_t> ShortArray;
array.h 98 class MANAGED PrimitiveArray : public Array {
102 static PrimitiveArray<T>* Alloc(Thread* self, size_t length)
142 DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray);
  /art/runtime/
utf.h 33 template<class T> class PrimitiveArray;
34 typedef PrimitiveArray<uint16_t> CharArray;
runtime.h 48 template<class T> class PrimitiveArray;
49 typedef PrimitiveArray<int8_t> ByteArray;
thread.h 54 template<class T> class PrimitiveArray;
55 typedef PrimitiveArray<int32_t> IntArray;

Completed in 173 milliseconds