Searched defs:target_type (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dcode_generator_mips.cc1597 const TypeReference& target_type = entry.first; local
1602 target_type.dex_file,
1603 target_type.type_index.index_));
H A Dcode_generator_mips64.cc1478 const TypeReference& target_type = entry.first; local
1483 target_type.dex_file,
1484 target_type.type_index.index_));
/art/runtime/verifier/
H A Dmethod_verifier.cc4693 void MethodVerifier::VerifyPrimitivePut(const RegType& target_type, const RegType& insn_type, argument
4699 if (target_type.IsIntegralTypes()) {
4700 instruction_compatible = target_type.Equals(insn_type);
4702 } else if (target_type.IsFloat()) {
4705 } else if (target_type.IsLong()) {
4708 // as target_type depends on the resolved type of the field.
4715 } else if (target_type.IsDouble()) {
4718 // as target_type depends on the resolved type of the field.
4734 << "' but expected type '" << target_type << "'"; local
4739 << " of type " << value_type << " but expected " << target_type << " fo local
[all...]

Completed in 127 milliseconds