Searched refs:deannotate (Results 1 – 4 of 4) sorted by relevance
/external/turbine/java/com/google/turbine/types/ |
D | Deannotate.java | 24 public static Type deannotate(Type ty) { in deannotate() method in Deannotate 30 deannotate(((Type.ArrayTy) ty).elementType()), ImmutableList.of()); in deannotate() 32 return Type.IntersectionTy.create(deannotate(((Type.IntersectionTy) ty).bounds())); in deannotate() 49 private static ImmutableList<Type> deannotate(ImmutableList<Type> types) { in deannotate() method in Deannotate 52 result.add(deannotate(type)); in deannotate() 61 Type.ClassTy.SimpleClassTy.create(c.sym(), deannotate(c.targs()), ImmutableList.of())); in deannotateClassTy() 81 deannotate(ty.returnType()), in deannotateMethodTy() 82 ty.receiverType() != null ? deannotate(ty.receiverType()) : null, in deannotateMethodTy() 83 deannotate(ty.parameters()), in deannotateMethodTy() 84 deannotate(ty.thrown())); in deannotateMethodTy()
|
/external/turbine/javatests/com/google/turbine/processing/ |
D | TurbineTypesUnaryTest.java | 140 public void deannotate() { in deannotate() method in TurbineTypesUnaryTest 143 Deannotate.deannotate(((TurbineTypeMirror) turbineA).asTurbineType()).toString(); in deannotate()
|
/external/turbine/java/com/google/turbine/processing/ |
D | TurbineTypes.java | 836 return factory.asTypeMirrors(deannotate(directSupertypes(asTurbineType(m)))); in directSupertypes() 896 t = deannotate(t); in erasure() 916 private static Type deannotate(Type ty) { 935 private static ImmutableList<Type> deannotate(ImmutableList<Type> types) { 938 result.add(deannotate(type)); 944 return ArrayTy.create(deannotate(ty.elementType()), /* annos= */ ImmutableList.of()); 951 SimpleClassTy.create(c.sym(), deannotate(c.targs()), /* annos= */ ImmutableList.of()));
|
/external/turbine/java/com/google/turbine/binder/ |
D | TypeBinder.java | 806 log.error(ty.position(), ErrorKind.UNEXPECTED_TYPE, Deannotate.deannotate(result)); in bindTyArg()
|