Home
last modified time | relevance | path

Searched refs:IsPrimitiveInt (Results 1 – 5 of 5) sorted by relevance

/art/runtime/entrypoints/
Dentrypoint_utils.cc54 if (UNLIKELY(klass->IsPrimitive() && !klass->IsPrimitiveInt())) { in CheckFilledNewArrayAlloc()
/art/runtime/mirror/
Dclass.h370 bool IsPrimitiveInt() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in IsPrimitiveInt() function
469 return component_type != nullptr && component_type->template IsPrimitiveInt<kNewFlags>(); in IsIntArrayClass()
Dobject-inl.h328 return component_type != nullptr && component_type->template IsPrimitiveInt<kNewFlags>(); in IsIntArray()
/art/runtime/interpreter/
Dunstarted_runtime.cc357 if (trg_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy()
395 } else if (src_type->IsPrimitiveInt()) { in UnstartedSystemArraycopy()
Dinterpreter_common.cc715 const bool is_primitive_int_component = component_class->IsPrimitiveInt(); in DoFilledNewArray()