Home
last modified time | relevance | path

Searched refs:type2 (Results 1 – 7 of 7) sorted by relevance

/art/test/046-reflect/src/
DMain.java617 Type type2 = types2.get(0); in checkParametrizedTypeEqualsAndHashCode() local
623 if (type2 instanceof ParameterizedType) { in checkParametrizedTypeEqualsAndHashCode()
630 if (type1.equals(type2)) { in checkParametrizedTypeEqualsAndHashCode()
631 System.out.println("type1("+type1+") equals type2("+type2+")"); in checkParametrizedTypeEqualsAndHashCode()
633 System.out.println("type1("+type1+") does not equal type2("+type2+")"); in checkParametrizedTypeEqualsAndHashCode()
641 if (type1.hashCode() == type2.hashCode()) { in checkParametrizedTypeEqualsAndHashCode()
642 System.out.println("type1("+type1+") hashCode equals type2("+type2+") hashCode"); in checkParametrizedTypeEqualsAndHashCode()
645 "type1("+type1+") hashCode does not equal type2("+type2+") hashCode"); in checkParametrizedTypeEqualsAndHashCode()
673 Type type2 = types2.get(0); in checkGenericArrayTypeEqualsAndHashCode() local
679 if (type2 instanceof GenericArrayType) { in checkGenericArrayTypeEqualsAndHashCode()
[all …]
/art/test/046-reflect/
Dexpected.txt127 type2 is a ParameterizedType
129 type1(java.util.Set<java.lang.String>) equals type2(java.util.Set<java.lang.String>)
131 type1(java.util.Set<java.lang.String>) hashCode equals type2(java.util.Set<java.lang.String>) hashC…
134 type2 is a GenericArrayType
136 type1(T[]) equals type2(T[])
138 type1(T[]) hashCode equals type2(T[]) hashCode
/art/runtime/verifier/
Dreg_type.cc596 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type); in Merge() local
598 int32_t val2 = type2.ConstantValue(); in Merge()
608 if (!type2.IsPreciseConstant()) { in Merge()
609 return type2; in Merge()
623 if (!type2.IsPreciseConstant()) { in Merge()
624 return type2; in Merge()
632 if (type2.IsConstantByte()) { in Merge()
634 } else if (type2.IsConstantShort()) { in Merge()
640 if (type2.IsConstantShort()) { in Merge()
651 const ConstantType& type2 = *down_cast<const ConstantType*>(&incoming_type); in Merge() local
[all …]
/art/compiler/optimizing/
Dinduction_var_analysis.cc78 static Primitive::Type Narrowest(Primitive::Type type1, Primitive::Type type2) { in Narrowest() argument
79 return Primitive::ComponentSize(type1) <= Primitive::ComponentSize(type2) ? type1 : type2; in Narrowest()
Dcode_generator.cc1144 Primitive::Type type2) { in EmitParallelMoves() argument
1147 parallel_move.AddMove(from2, to2, type2, nullptr); in EmitParallelMoves()
Dcode_generator.h348 Primitive::Type type2);
/art/runtime/
Dclass_linker.cc7052 Primitive::Type type2 = field2->GetTypeAsPrimitiveType(); in operator ()() local
7053 if (type1 != type2) { in operator ()()
7058 if (type2 == Primitive::kPrimNot) { in operator ()()
7063 size_t size2 = Primitive::ComponentSize(type2); in operator ()()
7069 return type1 < type2; in operator ()()