Home
last modified time | relevance | path

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

/versionedparcelable/versionedparcelable-compiler/src/main/java/androidx/versionedparcelable/compiler/
DVersionedParcelProcessor.java122 public boolean process(Set<? extends TypeElement> set, RoundEnvironment roundEnvironment) { in process() argument
123 if (set.isEmpty()) return true; in process()
124 TypeElement cls = findAnnotation(set, VERSIONED_PARCELIZE); in process()
125 TypeElement field = findAnnotation(set, PARCEL_FIELD); in process()
126 TypeElement nonField = findAnnotation(set, NON_PARCEL_FIELD); in process()
511 private AnnotationMirror findAnnotationMirror(List<? extends AnnotationMirror> set, in findAnnotationMirror() argument
513 for (AnnotationMirror annotation: set) { in findAnnotationMirror()
521 private TypeElement findAnnotation(Set<? extends TypeElement> set, String name) { in findAnnotation() argument
522 for (TypeElement typeElement: set) { in findAnnotation()