HomeSort by relevance Sort by last modified time
    Searched refs:AnnotationB (Results 1 - 7 of 7) sorted by null

  /art/test/715-clinit-implicit-parameter-annotations/src/
Main.java 30 public @interface AnnotationB {
47 Inner(@AnnotationA int number, String text, @AnnotationB("x") boolean flag) {
67 StaticInner(@AnnotationB("foo") int number, String text, @AnnotationA boolean flag) {
87 ImportantNumber(@AnnotationB("x") double doubleValue, @AnnotationB("y") boolean isLarge) {
126 Object[] opaqueClasses = new Object[] {AnnotationA.class, AnnotationB.class};
  /libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
AnnotationsTest.java 25 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
49 Class l() default AnnotationB.class;
68 assertEquals(AnnotationB.class, defaultValue("l"));
AnnotatedElementTestSupport.java 56 public @interface AnnotationB {}
99 * {@link AnnotationA}, {@link AnnotationB}, {@link AnnotationC}, {@link AnnotationD} this
114 assertPresent(expectedTypes.contains(AnnotationB.class), element, AnnotationB.class);
138 * {@link AnnotationA}, {@link AnnotationB} and {@link AnnotationC}, this method also asserts
152 assertDeclared(expectedTypes.contains(AnnotationB.class), element, AnnotationB.class);
ClassTest.java 23 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
42 @AnnotationB
49 checkAnnotatedElementPresentMethods(Type.class, AnnotationA.class, AnnotationB.class);
50 checkAnnotatedElementDirectMethods(Type.class, AnnotationA.class, AnnotationB.class);
54 checkAnnotatedElementPresentMethods(ExtendsType.class, AnnotationB.class);
ExecutableParameterTest.java 28 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
48 public void methodWithAnnotatedParameters(@AnnotationB @AnnotationD String parameter1,
64 assertEquals(set(AnnotationB.class, AnnotationD.class),
151 public ConstructorClass(@AnnotationB @AnnotationD String parameter1,
167 assertEquals(set(AnnotationB.class, AnnotationD.class),
MethodTest.java 23 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
36 @AnnotationB
43 checkAnnotatedElementPresentMethods(method, AnnotationB.class, AnnotationC.class);
AnnotatedElementParameterTest.java 27 import libcore.java.lang.reflect.annotations.AnnotatedElementTestSupport.AnnotationB;
47 public void methodWithAnnotatedParameters(@AnnotationB @AnnotationD String parameter1,
67 checkAnnotatedElementPresentMethods(parameter0, AnnotationB.class, AnnotationD.class);
79 public ConstructorClass(@AnnotationB @AnnotationD String parameter1,
99 checkAnnotatedElementPresentMethods(parameter0, AnnotationB.class, AnnotationD.class);

Completed in 706 milliseconds