Searched refs:anno2 (Results 1 – 5 of 5) sorted by relevance
/external/javassist/src/main/javassist/ |
D | CtClassType.java | 558 Annotation[] anno1, anno2; in hasAnnotationType() local 566 anno2 = null; in hasAnnotationType() 568 anno2 = a2.getAnnotations(); in hasAnnotationType() 575 if (anno2 != null) in hasAnnotationType() 576 for (int i = 0; i < anno2.length; i++) in hasAnnotationType() 577 if (anno2[i].getTypeName().equals(annotationTypeName)) in hasAnnotationType() 597 Annotation[] anno1, anno2; in getAnnotationType() local 605 anno2 = null; in getAnnotationType() 607 anno2 = a2.getAnnotations(); in getAnnotationType() 615 if (anno2 != null) in getAnnotationType() [all …]
|
/external/javassist/src/test/test3/ |
D | Anno.java | 14 Anno2 anno2() default @Anno2(); in anno2() method
|
D | Anno3.java | 16 Anno2[] anno2() default {@Anno2(i=11)}; in anno2() method
|
D | AnnoTest.java | 7 str="17", clazz=String.class, anno2=@Anno2(i={11, 12, 13}))
|
/external/javassist/src/test/javassist/ |
D | JvstTest3.java | 28 assertEquals(3, a.anno2().str().length); in testAnnotation() 45 assertEquals(11, a.anno2().i()[0]); in testAnnotation2() 83 assertEquals(11, a.anno2()[0].i()[0]); in testAnnotation4() 481 Object[][] anno2 = cc.getDeclaredMethod("bar").getParameterAnnotations(); in testGetParmeterAnnotations() local 482 assertEquals(0, anno2.length); in testGetParmeterAnnotations()
|