Searched refs:set (Results 1 – 1 of 1) sorted by relevance
122 public boolean process(Set<? extends TypeElement> set, RoundEnvironment roundEnvironment) { in process() argument123 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() argument513 for (AnnotationMirror annotation: set) { in findAnnotationMirror()521 private TypeElement findAnnotation(Set<? extends TypeElement> set, String name) { in findAnnotation() argument522 for (TypeElement typeElement: set) { in findAnnotation()