Home
last modified time | relevance | path

Searched defs:container (Results 1 – 8 of 8) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DAnnotatedElementParameterTest.java182 Class<? extends Annotation> container = Container.class; in testMethodDeclaredAnnotation_repeated() local
185 container, null); in testMethodDeclaredAnnotation_repeated() local
188 container, "@Container({@Repeated(2), @Repeated(3)})"); in testMethodDeclaredAnnotation_repeated() local
191 container, "@Container({@Repeated(1)})"); in testMethodDeclaredAnnotation_repeated() local
194 container, "@Container({@Repeated(1), @Repeated(2)})"); in testMethodDeclaredAnnotation_repeated() local
197 container, null); in testMethodDeclaredAnnotation_repeated() local
253 Class<? extends Annotation> container = Container.class; in testConstructorDeclaredAnnotation_repeated() local
256 container, null); in testConstructorDeclaredAnnotation_repeated() local
259 container, "@Container({@Repeated(2), @Repeated(3)})"); in testConstructorDeclaredAnnotation_repeated() local
262 container, "@Container({@Repeated(1)})"); in testConstructorDeclaredAnnotation_repeated() local
[all …]
DClassTest.java104 Class<Container> container = Container.class; in testIsAnnotationPresent() local
135 Class<Container> container = Container.class; in testGetDeclaredAnnotation() local
182 Class<Container> container = Container.class; in testGetDeclaredAnnotationsByType() local
238 Class<Container> container = Container.class; in testGetAnnotationsByType() local
DPackageTest.java45 Class<Container> container = Container.class; in testDeclaredAnnotation() local
81 Class<Container> container = Container.class; in testGetDeclaredAnnotationsByType() local
111 Class<Container> container = Container.class; in testGetAnnotationsByType() local
DFieldTest.java75 Class<? extends Annotation> container = Container.class; in testDeclaredAnnotation() local
111 Class<? extends Annotation> container = Container.class; in testGetDeclaredAnnotationsByType() local
143 Class<? extends Annotation> container = Container.class; in testGetAnnotationsByType() local
DMethodTest.java75 Class<? extends Annotation> container = Container.class; in testDeclaredAnnotation() local
111 Class<? extends Annotation> container = Container.class; in testGetDeclaredAnnotationsByType() local
143 Class<? extends Annotation> container = Container.class; in testGetAnnotationsByType() local
DConstructorTest.java76 Class<? extends Annotation> container = Container.class; in testDeclaredAnnotation() local
108 Class<? extends Annotation> container = Container.class; in testGetDeclaredAnnotationsByType() local
136 Class<? extends Annotation> container = Container.class; in testGetAnnotationsByType() local
DAnnotatedElementTestSupport.java304 Container container = (Container) annotation; in createArgumentsTestString() local
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1225 private static void assertStartsWith(byte[] expectedContents, byte[] container) { in assertStartsWith()