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()
114 static String encodeWithAnnotations( in encodeWithAnnotations() method in TypeEncoder
208 sb.append(encodeWithAnnotations(bound)); in appendTypeParameterWithBounds()
DBuilderSpec.java474 return TypeEncoder.encodeWithAnnotations(componentType) + "..."; in parameterTypeString()
476 return TypeEncoder.encodeWithAnnotations(parameterType); in parameterTypeString()
DPropertyBuilderClassifier.java283 String barBuilderType = TypeEncoder.encodeWithAnnotations(barBuilderTypeMirror); in makePropertyBuilder()
DAutoValueishProcessor.java494 TypeEncoder.encodeWithAnnotations( in propertySet()
840 return TypeEncoder.encodeWithAnnotations(parameterType, extraAnnotations, ImmutableSet.of()); in equalsParameterType()
DBuilderMethodClassifier.java286 String builderGetterTypeString = TypeEncoder.encodeWithAnnotations(builderGetterType); in classifyGetter()
DAutoAnnotationProcessor.java214 return TypeEncoder.encodeWithAnnotations( in equalsParameterType()
/external/auto/value/src/test/java/com/google/auto/value/processor/
DSimplifyWithAnnotationsTest.java175 text.append("{").append(TypeEncoder.encodeWithAnnotations(type)).append("}"); in testTypeSpellings()