Home
last modified time | relevance | path

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

/packages/services/Car/tools/GenericCarApiBuilder/src/com/android/car/tool/apibuilder/tests/
DParsedDataBuilderTest.java133 assertThat(annotationData.hasRequiresApiAnnotation).isFalse(); in testFieldDataAndAnnotationData()
153 assertThat(annotationData.hasRequiresApiAnnotation).isFalse(); in testFieldDataAndAnnotationData()
173 assertThat(annotationData.hasRequiresApiAnnotation).isTrue(); in testFieldDataAndAnnotationData()
193 assertThat(annotationData.hasRequiresApiAnnotation).isTrue(); in testFieldDataAndAnnotationData()
213 assertThat(annotationData.hasRequiresApiAnnotation).isTrue(); in testFieldDataAndAnnotationData()
233 assertThat(annotationData.hasRequiresApiAnnotation).isTrue(); in testFieldDataAndAnnotationData()
/packages/services/Car/tools/GenericCarApiBuilder/src/com/android/car/tool/apibuilder/
DParsedDataHelper.java248 if (classData.annotationData.hasRequiresApiAnnotation) { in getIncorrectRequiresApiUsage()
256 if (method.annotationData.hasRequiresApiAnnotation) { in getIncorrectRequiresApiUsage()
277 if (!method.annotationData.hasRequiresApiAnnotation) { in getIncorrectRequiresApi()
286 if (method.annotationData.hasRequiresApiAnnotation in getIncorrectRequiresApi()
DParsedDataBuilder.java254 boolean hasRequiresApiAnnotation = false; in getAnnotationData()
307 hasRequiresApiAnnotation = true; in getAnnotationData()
337 annotationData.hasRequiresApiAnnotation = hasRequiresApiAnnotation; in getAnnotationData()
/packages/services/Car/tools/GenericCarApiBuilder/src/com/android/car/tool/data/
DAnnotationData.java30 public boolean hasRequiresApiAnnotation = false; field in AnnotationData