Home
last modified time | relevance | path

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

/art/test/046-reflect/src/
DMain.java614 Type type1 = types1.get(0); in checkParametrizedTypeEqualsAndHashCode() local
618 if (type1 instanceof ParameterizedType) { in checkParametrizedTypeEqualsAndHashCode()
628 if (type1.equals(type2)) { in checkParametrizedTypeEqualsAndHashCode()
629 System.out.println("type1("+type1+") equals type2("+type2+")"); in checkParametrizedTypeEqualsAndHashCode()
631 System.out.println("type1("+type1+") does not equal type2("+type2+")"); in checkParametrizedTypeEqualsAndHashCode()
634 if (type1.equals(type3)) { in checkParametrizedTypeEqualsAndHashCode()
635 System.out.println("type1("+type1+") equals type3("+type3+")"); in checkParametrizedTypeEqualsAndHashCode()
637 System.out.println("type1("+type1+") does not equal type3("+type3+")"); in checkParametrizedTypeEqualsAndHashCode()
639 if (type1.hashCode() == type2.hashCode()) { in checkParametrizedTypeEqualsAndHashCode()
640 System.out.println("type1("+type1+") hashCode equals type2("+type2+") hashCode"); in checkParametrizedTypeEqualsAndHashCode()
[all …]
/art/test/046-reflect/
Dexpected.txt126 type1 is a ParameterizedType
129 type1(java.util.Set<java.lang.String>) equals type2(java.util.Set<java.lang.String>)
130 type1(java.util.Set<java.lang.String>) equals type3(java.util.Set<java.lang.String>)
131 type1(java.util.Set<java.lang.String>) hashCode equals type2(java.util.Set<java.lang.String>) hashC…
132 type1(java.util.Set<java.lang.String>) hashCode equals type3(java.util.Set<java.lang.String>) hashC…
133 type1 is a GenericArrayType
136 type1(T[]) equals type2(T[])
137 type1(T[]) equals type3(T[])
138 type1(T[]) hashCode equals type2(T[]) hashCode
139 type1(T[]) hashCode equals type3(T[]) hashCode
/art/runtime/verifier/
Dreg_type.cc584 const ConstantType& type1 = *down_cast<const ConstantType*>(this); in Merge() local
586 int32_t val1 = type1.ConstantValue(); in Merge()
591 if (!type1.IsPreciseConstant()) { in Merge()
606 if (!type1.IsPreciseConstant()) { in Merge()
620 if (type1.IsConstantByte()) { in Merge()
628 } else if (type1.IsConstantShort()) { in Merge()
639 const ConstantType& type1 = *down_cast<const ConstantType*>(this); in Merge() local
641 int32_t val1 = type1.ConstantValueLo(); in Merge()
645 const ConstantType& type1 = *down_cast<const ConstantType*>(this); in Merge() local
647 int32_t val1 = type1.ConstantValueHi(); in Merge()
/art/compiler/optimizing/
Dcode_generator.h274 Primitive::Type type1,
Dcode_generator.cc905 Primitive::Type type1, in EmitParallelMoves() argument
910 parallel_move.AddMove(from1, to1, type1, nullptr); in EmitParallelMoves()
/art/runtime/
Dclass_linker.cc5083 Primitive::Type type1 = field1->GetTypeAsPrimitiveType(); in operator ()() local
5085 if (type1 != type2) { in operator ()()
5086 if (type1 == Primitive::kPrimNot) { in operator ()()
5094 size_t size1 = Primitive::ComponentSize(type1); in operator ()()
5101 return type1 < type2; in operator ()()