Home
last modified time | relevance | path

Searched refs:elementUtils (Results 1 – 3 of 3) sorted by relevance

/external/desugar/java/com/google/devtools/common/options/processor/
DOptionProcessor.java78 private Elements elementUtils; field in OptionProcessor
92 elementUtils = processingEnv.getElementUtils(); in init()
113 TypeElement typeElement = elementUtils.getTypeElement(typeName); in init()
142 elementUtils.getTypeElement("com.google.devtools.common.options.OptionsBase").asType(); in checkInOptionBase()
176 TypeMirror listType = elementUtils.getTypeElement(List.class.getCanonicalName()).asType(); in getAcceptedConverterReturnTypes()
239 elementUtils.getTypeElement(converterInstance.getClass().getCanonicalName()); in checkForDefaultConverter()
281 elementUtils in checkProvidedConverter()
292 elementUtils.getTypeElement(String.class.getCanonicalName()).asType())) in checkProvidedConverter()
328 optionType, elementUtils.getTypeElement(Void.class.getCanonicalName()).asType())) { in checkConverter()
336 ProcessorUtils.getAnnotation(elementUtils, typeUtils, optionField, Option.class); in checkConverter()
[all …]
DProcessorUtils.java33 Elements elementUtils, in getAnnotation() argument
38 TypeElement annotationElement = elementUtils.getTypeElement(annotation.getCanonicalName()); in getAnnotation()
74 Elements elementUtils, AnnotationMirror annotation, String fieldName) in getClassTypeFromAnnotationField() argument
77 elementUtils.getElementValuesWithDefaults(annotation).entrySet()) { in getClassTypeFromAnnotationField()
91 return elementUtils.getTypeElement(qualifiedName); in getClassTypeFromAnnotationField()
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
DImplementsValidator.java269 Elements elementUtils = env.getElementUtils(); in captureJavadoc() local
270 modelBuilder.documentType(elem, elementUtils.getDocComment(elem), imports); in captureJavadoc()
293 String docMd = elementUtils.getDocComment(methodElement); in captureJavadoc()