Home
last modified time | relevance | path

Searched refs:encodeWithAnnotations (Results 1 – 7 of 7) sorted by relevance

/external/auto/value/src/main/java/com/google/auto/value/processor/
DTypeEncoder.java101 static String encodeWithAnnotations(TypeMirror type) { in encodeWithAnnotations() method in TypeEncoder
102 return encodeWithAnnotations(type, ImmutableList.of(), ImmutableSet.of()); in encodeWithAnnotations()
111 static String encodeWithAnnotations( in encodeWithAnnotations() method in TypeEncoder
114 return encodeWithAnnotations(type, extraAnnotations, ImmutableSet.of()); in encodeWithAnnotations()
126 static String encodeWithAnnotations( in encodeWithAnnotations() method in TypeEncoder
220 sb.append(encodeWithAnnotations(bound)); in appendTypeParameterWithBounds()
DPropertyBuilderClassifier.java313 String barBuilderType = TypeEncoder.encodeWithAnnotations(barBuilderTypeMirror); in makePropertyBuilder()
315 TypeEncoder.encodeWithAnnotations( in makePropertyBuilder()
DBuilderSpec.java479 return TypeEncoder.encodeWithAnnotations(componentType) + "..."; in parameterTypeString()
481 return TypeEncoder.encodeWithAnnotations(parameterType); in parameterTypeString()
DAutoValueishProcessor.java241 return TypeEncoder.encodeWithAnnotations(typeMirror, availableNullableTypeAnnotations); in getBuilderFieldType()
543 TypeEncoder.encodeWithAnnotations( in propertySet()
921 return TypeEncoder.encodeWithAnnotations(parameterType, extraAnnotations); in equalsParameterType()
DBuilderMethodClassifier.java300 String builderGetterTypeString = TypeEncoder.encodeWithAnnotations(builderGetterType); in classifyGetter()
DAutoAnnotationProcessor.java203 return TypeEncoder.encodeWithAnnotations(javaLangObject, equalsParameterAnnotations); in equalsParameterType()
/external/auto/value/src/test/java/com/google/auto/value/processor/
DSimplifyWithAnnotationsTest.java175 text.append("{").append(TypeEncoder.encodeWithAnnotations(type)).append("}"); in testTypeSpellings()