Searched refs:rawType (Results 1 – 3 of 3) sorted by relevance
/cts/common/device-side/bedstead/testapisreflection/src/processor/main/java/com/android/bedstead/testapisreflection/processor/ |
D | TypeUtils.java | 76 String rawType = "kotlin." + kotlinType.substring(0, kotlinType.indexOf("<")); in convertToKotlinCompatibleType() local 80 return getDeclaredType(rawType, wrappedType, in convertToKotlinCompatibleType() 102 String rawType = typeSimpleName(rawTypeQualifiedName); in getDeclaredType() local 105 return new ClassName(rawTypePackage, rawType); in getDeclaredType() 108 return ParameterizedTypeName.get(new ClassName(rawTypePackage, rawType), in getDeclaredType()
|
D | Processor.java | 583 String rawType = returnType.substring(0, returnType.indexOf("<")); in buildReturnTypeProxyCode() local 587 if (rawType.contains("List")) { in buildReturnTypeProxyCode() 605 } else if (rawType.contains("Set")) { in buildReturnTypeProxyCode() 666 String rawType = method.getReturnType().getType().substring( in returnTypeOrProxy() local 670 method.getReturnType().setProxyType(rawType + "<" + wrappedProxyType + ">"); in returnTypeOrProxy() 672 returnTypeName = getDeclaredType(rawType, wrappedProxyType, in returnTypeOrProxy()
|
/cts/common/device-side/bedstead/remoteframeworkclasses/src/processor/main/java/com/android/bedstead/remoteframeworkclasses/processor/ |
D | MethodSignature.java | 51 .map(m -> rawType(m, elements)) in forMethod() 55 .stream().map(m -> rawType(m, elements)) in forMethod() 59 rawType(method.getReturnType(), elements), in forMethod() 63 private static TypeMirror rawType(TypeMirror type, Elements elements) { in rawType() method in MethodSignature
|