Home
last modified time | relevance | path

Searched refs:mappings (Results 1 – 10 of 10) sorted by relevance

/cts/tools/signature-tools/src/signature/compare/model/subst/
DMethodProjection.java30 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()
DArrayTypeProjection.java29 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()
DClassReferenceProjection.java30 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()
DWildcardTypeProjection.java31 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()
DParameterProjection.java29 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()
DViewpointAdapter.java65 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()
DParameterizedTypeProjection.java32 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()
DExecutableMemberProjection.java35 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()
DConstructorProjection.java29 Map<ITypeVariableDefinition, ITypeReference> mappings) { in ConstructorProjection() argument
30 super(original, mappings); in ConstructorProjection()
/cts/tools/signature-tools/src/signature/converter/dex/
DDexToSigConverter.java374 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()