/cts/tools/signature-tools/src/signature/compare/model/subst/ |
D | MethodProjection.java | 30 private Map<ITypeVariableDefinition, ITypeReference> mappings; field in MethodProjection 33 Map<ITypeVariableDefinition, ITypeReference> mappings) { in MethodProjection() argument 34 super(original, mappings); in MethodProjection() 35 this.mappings = mappings; in MethodProjection() 41 .getReturnType(), mappings); in getReturnType() 46 return "(" + SigMethod.toString(this) + " : " + mappings + " )"; in toString()
|
D | ArrayTypeProjection.java | 29 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in ArrayTypeProjection 32 Map<ITypeVariableDefinition, ITypeReference> mappings) { in ArrayTypeProjection() argument 34 this.mappings = mappings; in ArrayTypeProjection() 39 .getComponentType(), mappings); in getComponentType() 54 return "(" + SigArrayType.toString(this) + " : " + mappings + " )"; in toString()
|
D | ClassReferenceProjection.java | 30 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in ClassReferenceProjection 33 Map<ITypeVariableDefinition, ITypeReference> mappings) { in ClassReferenceProjection() argument 35 this.mappings = mappings; in ClassReferenceProjection() 39 return new ClassProjection(original.getClassDefinition(), mappings); in getClassDefinition() 54 return "(" + SigClassReference.toString(this) + " : " + mappings + " )"; in toString()
|
D | WildcardTypeProjection.java | 31 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in WildcardTypeProjection 34 Map<ITypeVariableDefinition, ITypeReference> mappings) { in WildcardTypeProjection() argument 36 this.mappings = mappings; in WildcardTypeProjection() 41 .getLowerBound(), mappings); in getLowerBound() 46 .getUpperBounds(), mappings); in getUpperBounds()
|
D | ParameterProjection.java | 29 private Map<ITypeVariableDefinition, ITypeReference> mappings; field in ParameterProjection 32 Map<ITypeVariableDefinition, ITypeReference> mappings) { in ParameterProjection() argument 34 this.mappings = mappings; in ParameterProjection() 43 mappings); in getType()
|
D | ViewpointAdapter.java | 65 Map<ITypeVariableDefinition, ITypeReference> mappings) { in substitutedTypeReferences() argument 68 mappings)); in substitutedTypeReferences() 73 Map<ITypeVariableDefinition, ITypeReference> mappings) { in substitutedTypeReferences() argument 77 result.add(substitutedTypeReference(typeReference, mappings)); in substitutedTypeReferences() 84 Map<ITypeVariableDefinition, ITypeReference> mappings) { in substitutedTypeReference() argument 88 mappings); in substitutedTypeReference() 92 return new ArrayTypeProjection((IArrayType) type, mappings); in substitutedTypeReference() 95 mappings); in substitutedTypeReference() 97 return new WildcardTypeProjection((IWildcardType) type, mappings); in substitutedTypeReference() 100 ITypeReference subst = mappings.get(((ITypeVariableReference) type) in substitutedTypeReference()
|
D | ParameterizedTypeProjection.java | 32 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in ParameterizedTypeProjection 35 Map<ITypeVariableDefinition, ITypeReference> mappings) { in ParameterizedTypeProjection() argument 37 this.mappings = mappings; in ParameterizedTypeProjection() 45 return ViewpointAdapter.substitutedTypeReference(ownerType, mappings); in getOwnerType() 70 .getTypeArguments(), mappings); in getTypeArguments()
|
D | ExecutableMemberProjection.java | 35 private final Map<ITypeVariableDefinition, ITypeReference> mappings; field in ExecutableMemberProjection 38 Map<ITypeVariableDefinition, ITypeReference> mappings) { in ExecutableMemberProjection() argument 40 this.mappings = mappings; in ExecutableMemberProjection() 53 .getExceptions(), mappings); in getExceptions() 67 result.add(new ParameterProjection(parameter, mappings)); in getParameters()
|
D | ConstructorProjection.java | 29 Map<ITypeVariableDefinition, ITypeReference> mappings) { in ConstructorProjection() argument 30 super(original, mappings); in ConstructorProjection()
|
/cts/tools/signature-tools/src/signature/converter/dex/ |
D | DexToSigConverter.java | 374 Map<String, Object> mappings = getDefaultValueMapping(dexClass); in convertClass() local 376 dexClass.getMethods(), mappings); in convertClass() 427 HashMap<String, Object> mappings = new HashMap<String, Object>(); in getDefaultValueMapping() local 441 mappings.put(defaultAttribute.getName(), in getDefaultValueMapping() 447 return mappings; in getDefaultValueMapping() 471 List<DexMethod> list, Map<String, Object> mappings) { in convertAnnotationFields() argument 476 annotationfields.add(convertAnnotationField(dexMethod, mappings in convertAnnotationFields()
|