Home | History | Annotate | Download | only in native

Lines Matching refs:Array

22 #include "mirror/array.h"
34 * cause "word tearing". Accesses to 64-bit array elements may be two 32-bit operations.
39 ObjPtr<mirror::Object> array)
41 std::string actualType(mirror::Object::PrettyTypeOf(array));
44 "%s of type %s is not an array", identifier, actualType.c_str());
74 ObjPtr<mirror::Array> srcArray = srcObject->AsArray();
75 ObjPtr<mirror::Array> dstArray = dstObject->AsArray();
131 LOG(FATAL) << "Unknown array type: " << srcArray->PrettyTypeOf();
135 // If one of the arrays holds a primitive type the other array must hold the exact same type.
160 // Template to convert general array to that of its specific primitive type.
162 inline ObjPtr<T> AsPrimitiveArray(ObjPtr<mirror::Array> array)
164 return ObjPtr<T>::DownCast(array);
174 ObjPtr<mirror::Array> srcArray = srcObject->AsArray();
175 ObjPtr<mirror::Array> dstArray = dstObject->AsArray();