Home
last modified time | relevance | path

Searched refs:IArrayType (Results 1 – 11 of 11) sorted by relevance

/cts/tools/signature-tools/src/signature/model/impl/
DSigArrayType.java21 import signature.model.IArrayType;
25 public class SigArrayType implements IArrayType, Serializable {
41 public static int hashCode(IArrayType type) { in hashCode()
50 public static boolean equals(IArrayType thiz, Object that) { in equals()
51 if (!(that instanceof IArrayType)) { in equals()
54 IArrayType other = (IArrayType) that; in equals()
63 public static String toString(IArrayType type) { in toString()
/cts/tools/signature-tools/src/signature/compare/model/impl/
DSigArrayTypeDelta.java21 import signature.model.IArrayType;
23 public class SigArrayTypeDelta extends SigTypeDelta<IArrayType> implements
28 public SigArrayTypeDelta(IArrayType from, IArrayType to) { in SigArrayTypeDelta()
/cts/tools/signature-tools/src/signature/compare/model/subst/
DArrayTypeProjection.java21 import signature.model.IArrayType;
26 public class ArrayTypeProjection implements IArrayType {
28 private final IArrayType original;
31 public ArrayTypeProjection(IArrayType original, in ArrayTypeProjection()
DViewpointAdapter.java19 import signature.model.IArrayType;
91 } else if (type instanceof IArrayType) { in substitutedTypeReference()
92 return new ArrayTypeProjection((IArrayType) type, mappings); in substitutedTypeReference()
/cts/tools/signature-tools/src/signature/compare/model/
DIArrayTypeDelta.java19 import signature.model.IArrayType;
25 public interface IArrayTypeDelta extends ITypeReferenceDelta<IArrayType> {
/cts/tools/signature-tools/src/signature/io/html/
DExecutableMemberComparator.java20 import signature.model.IArrayType;
83 if (type instanceof IArrayType) { in getTypeName()
84 return getTypeName(((IArrayType) type).getComponentType()); in getTypeName()
/cts/tools/signature-tools/src/signature/model/
DIArrayType.java22 public interface IArrayType extends ITypeReference { interface
/cts/tools/signature-tools/test/signature/converter/
DConvertEnumTest.java36 import signature.model.IArrayType;
141 assertTrue(values.getReturnType() instanceof IArrayType); in testEnum3()
142 …assertSame(c, ((IClassReference)((IArrayType)values.getReturnType()).getComponentType()).getClassD… in testEnum3()
184 assertTrue(values.getReturnType() instanceof IArrayType); in testEnum4()
185 …assertSame(c, ((IClassReference)((IArrayType)values.getReturnType()).getComponentType()).getClassD… in testEnum4()
DConvertAnnotationTest.java33 import signature.model.IArrayType;
171 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsInt2()
195 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsInt3()
256 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsDouble2()
280 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsDouble3()
356 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsEnum2()
386 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsEnum3()
469 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsAnnotation2()
496 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsAnnotation3()
560 assertTrue(field.getType() instanceof IArrayType); in testAnnotationDefaultsString2()
[all …]
DConvertClassTest.java36 import signature.model.IArrayType;
470 IArrayType arrayType = (IArrayType) method.getReturnType(); in convertArrayMethod()
499 …(((IClassReference)((IArrayType)fields.get("a").getType()).getComponentType()).getClassDefinition(… in testParameterConformance1()
/cts/tools/signature-tools/src/signature/compare/
DApiComparator.java69 import signature.model.IArrayType;
1228 if (implementInterface(from, to, IArrayType.class)) {
1229 return considerEqualTypes(((IArrayType) from).getComponentType(),
1230 ((IArrayType) to).getComponentType());
1287 if (implementInterface(from, to, IArrayType.class)) {
1288 return compareArrayType((IArrayType) from, (IArrayType) to);
1325 if (reference instanceof IArrayType) {
1326 return isGeneric(((IArrayType) reference).getComponentType());
1347 if (reference instanceof IArrayType) {
1349 return new SigArrayType(getErasedType(((IArrayType) reference)
[all …]