Home
last modified time | relevance | path

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

/packages/services/Car/tools/GenericCarApiBuilder/src/com/android/car/tool/apibuilder/tests/
DParsedDataBuilderTest.java124 assertThat(annotationData.hasAddedInOrBefore).isTrue(); in testFieldDataAndAnnotationData()
144 assertThat(annotationData.hasAddedInOrBefore).isFalse(); in testFieldDataAndAnnotationData()
164 assertThat(annotationData.hasAddedInOrBefore).isFalse(); in testFieldDataAndAnnotationData()
184 assertThat(annotationData.hasAddedInOrBefore).isFalse(); in testFieldDataAndAnnotationData()
204 assertThat(annotationData.hasAddedInOrBefore).isFalse(); in testFieldDataAndAnnotationData()
224 assertThat(annotationData.hasAddedInOrBefore).isTrue(); in testFieldDataAndAnnotationData()
/packages/services/Car/tools/GenericCarApiBuilder/src/com/android/car/tool/apibuilder/
DParsedDataHelper.java64 if (field.annotationData.hasAddedInOrBefore) { in getAddedInOrBeforeApisOnly()
72 if (method.annotationData.hasAddedInOrBefore) { in getAddedInOrBeforeApisOnly()
210 } else if (field.annotationData.hasAddedInOrBefore) { in getApisWithVersion()
226 } else if (method.annotationData.hasAddedInOrBefore) { in getApisWithVersion()
DParsedDataBuilder.java245 boolean hasAddedInOrBefore = false; in getAnnotationData()
265 hasAddedInOrBefore = true; in getAnnotationData()
328 annotationData.hasAddedInOrBefore = hasAddedInOrBefore; in getAnnotationData()
/packages/services/Car/tools/GenericCarApiBuilder/src/com/android/car/tool/data/
DAnnotationData.java21 public boolean hasAddedInOrBefore = false; field in AnnotationData