Home
last modified time | relevance | path

Searched refs:expected_type (Results 1 – 6 of 6) sorted by relevance

/art/compiler/optimizing/
Dload_store_elimination.cc123 DataType::Type expected_type) { in AddTypeConversionIfNecessary() argument
126 if (expected_type != DataType::Type::kBool && in AddTypeConversionIfNecessary()
127 !DataType::IsTypeConversionImplicit(value->GetType(), expected_type)) { in AddTypeConversionIfNecessary()
129 expected_type, value, instruction->GetDexPc()); in AddTypeConversionIfNecessary()
/art/runtime/
Dcommon_throws.cc260 void ThrowIncompatibleClassChangeError(InvokeType expected_type, InvokeType found_type, in ThrowIncompatibleClassChangeError() argument
264 << expected_type << " but instead was found to be of type " << found_type; in ThrowIncompatibleClassChangeError()
880 void ThrowWrongMethodTypeException(ObjPtr<mirror::MethodType> expected_type, in ThrowWrongMethodTypeException() argument
882 ThrowWrongMethodTypeException(expected_type->PrettyDescriptor(), actual_type->PrettyDescriptor()); in ThrowWrongMethodTypeException()
Dcommon_throws.h131 void ThrowIncompatibleClassChangeError(InvokeType expected_type,
/art/dex2oat/
Dverifier_deps_test.cc329 const std::string& expected_type, in HasField() argument
352 if (expected_type != actual_type) { in HasField()
/art/runtime/dex/
Ddex_file_annotations.cc836 uint32_t expected_type) in GetAnnotationValue() argument
859 if (annotation_value.type_ != expected_type) { in GetAnnotationValue()
/art/runtime/verifier/
Dmethod_verifier.cc4442 const RegType& expected_type = reg_types_.GetComponentType(res_type, class_loader_.Get()); in VerifyNewArray() local
4450 if (!work_line_->VerifyRegisterType(this, get_reg, expected_type)) { in VerifyNewArray()