Home
last modified time | relevance | path

Searched refs:typeForString (Results 1 – 4 of 4) sorted by relevance

/cts/common/device-side/bedstead/remoteframeworkclasses/src/processor/main/java/com/android/bedstead/remoteframeworkclasses/processor/
DMethodSignature.java105 returnType = typeForString(parts[0], types, elements); in forApiString()
121 .map(t -> typeForString(t, types, elements)) in forApiString()
132 .map(t -> typeForString(t, types, elements)) in forApiString()
139 private static TypeMirror typeForString(String typeName, Types types, Elements elements) { in typeForString() method in MethodSignature
151 return typeForString(typeName.split("<", 2)[0], types, elements); in typeForString()
156 typeForString(typeName.substring(0, typeName.length() - 2), types, elements)); in typeForString()
/cts/common/device-side/bedstead/testapisreflection/src/processor/main/java/com/android/bedstead/testapisreflection/processor/
DTypeUtils.java114 static TypeMirror typeForString(String typeName, Types types, Elements elements) { in typeForString() method in TypeUtils
121 TypeMirror typeArgs = typeForString(typeName.substring( in typeForString()
129 typeForString(typeName.substring(0, typeName.length() - 2), types, elements)); in typeForString()
DFieldSignature.java46 /* type= */ TypeUtils.typeForString(parts[2], types, elements)); in forFieldString()
DProcessor.java23 import static com.android.bedstead.testapisreflection.processor.TypeUtils.typeForString;
415 TypeName intTypeName = convertToKotlinCompatibleType(typeForString("int", in implementParcelable()
542 TypeMirror parameterTypeMirror = typeForString(paramType, in buildParametersCode()
678 TypeMirror returnTypeMirror = typeForString(method.getReturnType().getType(), in returnTypeOrProxy()