Home
last modified time | relevance | path

Searched refs:nullableAnnotationFor (Results 1 – 6 of 6) sorted by relevance

/external/auto/value/src/main/java/com/google/auto/value/processor/
DBuilderMethodClassifier.java18 import static com.google.auto.value.processor.AutoValueishProcessor.nullableAnnotationFor;
446 nullableAnnotationFor(parameterElement, parameterElement.asType()).isPresent(); in getSetterFunction()
460 nullableAnnotationFor(propertyElement, originalPropertyType(propertyElement)) in getSetterFunction()
DBuilderSpec.java21 import static com.google.auto.value.processor.AutoValueishProcessor.nullableAnnotationFor;
446 Optional<String> maybeNullable = nullableAnnotationFor(parameterElement, parameterType); in PropertySetter()
DAutoOneOfProcessor.java281 if (nullableAnnotationFor(propertyMethod, propertyMethod.getReturnType()).isPresent()) { in nullableAnnotationForMethod()
DAutoValueishProcessor.java584 static Optional<String> nullableAnnotationFor(Element element, TypeMirror elementType) { in nullableAnnotationFor() method in AutoValueishProcessor
755 nullable.isPresent() && !nullableAnnotationFor(equals, parameterType).isPresent() in equalsParameterType()
DAutoBuilderProcessor.java173 Optional<String> nullableAnnotation = nullableAnnotationFor(var, var.asType()); in newProperty()
DAutoValueProcessor.java451 return nullableAnnotationFor(propertyMethod, propertyMethod.getReturnType()); in nullableAnnotationForMethod()