Home | History | Annotate | Download | only in robolectric

Lines Matching refs:annos

453     	Annotation[] annos = method.getDeclaringClass().getAnnotations();
454 strictI18n = lookForI18nAnnotations(strictI18n, annos);
457 annos = method.getAnnotations();
458 strictI18n = lookForI18nAnnotations(strictI18n, annos);
484 * @param annos
487 private boolean lookForI18nAnnotations(boolean strictI18n, Annotation[] annos) {
488 for ( int i = 0; i < annos.length; i++ ) {
489 String name = annos[i].annotationType().getName();
506 Annotation[] annos = method.getDeclaredAnnotations();
507 for( Annotation anno: annos ){