Home
last modified time | relevance | path

Searched refs:array_type (Results 1 – 14 of 14) sorted by relevance

/aosp12/system/teeui/libteeui_jni/
H A Dlibteeui_jni.cpp32 using array_type = jintArray; typedef
34 static constexpr element_type* (JNIEnv::*const getArrayElements)(array_type, jboolean*) =
43 using array_type = jbyteArray; typedef
45 static constexpr element_type* (JNIEnv::*const getArrayElements)(array_type, jboolean*) =
54 using array_type = jstring; typedef
56 static constexpr element_type* (JNIEnv::*const getArrayElements)(array_type, jboolean*) =
58 static constexpr void (JNIEnv::*const releaseArrayElements)(array_type, element_type*) =
60 static constexpr jsize (JNIEnv::*const getArrayLength)(array_type) =
73 using array_type = typename JTypeTraits<T>::array_type; typedef in JArray
74 array_type jarray_;
[all …]
/aosp12/art/compiler/optimizing/
H A Dssa_builder.cc310 ReferenceTypeInfo array_type = array->GetReferenceTypeInfo(); in GetPrimitiveArrayComponentType() local
311 DCHECK(array_type.IsPrimitiveArrayClass()); in GetPrimitiveArrayComponentType()
313 array_type.GetTypeHandle()->GetComponentType()->GetPrimitiveType()); in GetPrimitiveArrayComponentType()
340 DataType::Type array_type = GetPrimitiveArrayComponentType(array); in FixAmbiguousArrayOps() local
343 if (DataType::IsIntOrLongType(array_type)) { in FixAmbiguousArrayOps()
352 DCHECK(DataType::IsFloatingPointType(array_type)); in FixAmbiguousArrayOps()
383 DataType::Type array_type = GetPrimitiveArrayComponentType(array); in FixAmbiguousArrayOps() local
384 DCHECK_EQ(DataType::Is64BitType(value_type), DataType::Is64BitType(array_type)); in FixAmbiguousArrayOps()
386 if (DataType::IsFloatingPointType(array_type)) { in FixAmbiguousArrayOps()
392 HInstruction* equivalent = GetFloatOrDoubleEquivalent(value, array_type); in FixAmbiguousArrayOps()
[all …]
/aosp12/system/tools/aidl/
H A Daidl_to_ndk.cpp366 AidlTypeSpecifier array_type = in GetTypeAspect() local
369 if (!(array_type.Resolve(types) && array_type.CheckValid(types))) { in GetTypeAspect()
372 return GetTypeAspect(types, array_type); in GetTypeAspect()
H A Daidl_const_expressions.cpp625 Type array_type = Type::ERROR; in evaluate() local
635 if (array_type == Type::ERROR) { in evaluate()
636 array_type = value->final_type_; in evaluate()
637 } else if (!AidlBinaryConstExpression::AreCompatibleTypes(array_type, in evaluate()
640 << ". Expecting type compatible with " << ToString(array_type); in evaluate()
/aosp12/art/runtime/verifier/
H A Dmethod_verifier.cc2598 if (!array_type.IsZeroOrNull()) { in CodeFlowVerifyInstruction()
2599 if (!array_type.IsArrayTypes()) { in CodeFlowVerifyInstruction()
2601 << array_type; in CodeFlowVerifyInstruction()
2602 } else if (array_type.IsUnresolvedTypes()) { in CodeFlowVerifyInstruction()
2605 << array_type; in CodeFlowVerifyInstruction()
4413 if (array_type.IsZeroOrNull()) { in VerifyAGet()
4433 } else if (!array_type.IsArrayTypes()) { in VerifyAGet()
4435 } else if (array_type.IsUnresolvedMergedReference()) { in VerifyAGet()
4539 if (array_type.IsZeroOrNull()) { in VerifyAPut()
4560 } else if (!array_type.IsArrayTypes()) { in VerifyAPut()
[all …]
/aosp12/hardware/interfaces/confirmationui/support/include/android/hardware/confirmationui/support/
H A Dconfirmationui_utils.h80 using array_type = T[elements]; variable
103 array_type data_;
/aosp12/art/runtime/
H A Dtransaction.cc665 Primitive::Type array_type, in UndoArrayWrite() argument
671 switch (array_type) { in UndoArrayWrite()
708 LOG(FATAL) << "Unsupported type " << array_type; in UndoArrayWrite()
H A Dtransaction.h224 Primitive::Type array_type,
/aosp12/art/runtime/interpreter/
H A Dinterpreter_common.cc758 ObjPtr<mirror::Class> array_type, in PackCollectorArrayForBootstrapMethod() argument
791 array_type, \ in PackCollectorArrayForBootstrapMethod()
819 ObjPtr<mirror::Class> component_type = array_type->GetComponentType(); in PackCollectorArrayForBootstrapMethod()
1040 ObjPtr<mirror::Class> array_type = call_site_type->GetPTypes()->Get(argument_index); in InvokeBootstrapMethod() local
1043 array_type, in InvokeBootstrapMethod()
H A Dunstarted_runtime_test.cc111 ObjPtr<mirror::Class> array_type = in CreateObjectArray() local
113 CHECK(array_type != nullptr); in CreateObjectArray()
115 mirror::ObjectArray<mirror::Object>::Alloc(self, array_type, 3); in CreateObjectArray()
/aosp12/system/tools/hidl/
H A Dhidl-gen_y.yy292 %type<arrayType> array_type
1116 array_type
1121 | array_type '[' const_expr ']'
1130 | array_type ignore_doc_comments
/aosp12/art/compiler/debug/
H A Delf_debug_info_writer.h540 size_t array_type = info_.StartTag(DW_TAG_array_type); in WriteTypeDeclaration() local
545 info_.WriteRef4(DW_AT_type, array_type); in WriteTypeDeclaration()
/aosp12/system/teeui/libteeui/include/teeui/
H A Dutils.h40 using array_type = T[elements]; variable
75 array_type data_;
/aosp12/art/libdexfile/dex/
H A Ddex_file_verifier.cc1145 EncodedArrayValueIterator::ValueType array_type = array_it.GetValueType(); in CheckStaticFieldTypes() local
1147 switch (array_type) { in CheckStaticFieldTypes()
1214 ErrorStringPrintf("unexpected static field initial value type: %x", array_type); in CheckStaticFieldTypes()