Home
last modified time | relevance | path

Searched refs:allAnnotations (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/libcore/reflect/
DRecordComponents.java96 Annotation[][] allAnnotations = readElement("componentAnnotations", in getVisibleAnnotations() local
100 if (allAnnotations == null) { in getVisibleAnnotations()
101 allAnnotations = new Annotation[0][]; in getVisibleAnnotations()
107 componentAnnotations = allAnnotations; in getVisibleAnnotations()
110 Annotation[][] allAnnotations = componentAnnotations; in getVisibleAnnotations() local
113 if (index < 0 || index >= allAnnotations.length || allAnnotations[index] == null) { in getVisibleAnnotations()
117 Annotation[] annotations = allAnnotations[index]; in getVisibleAnnotations()
/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DExecutableParameterTest.java287 Annotation[][] allAnnotations = getParameterAnnotations(executable, 1); in assertOnlyParameterAnnotations() local
289 Annotation[] p0Annotations = allAnnotations[0]; in assertOnlyParameterAnnotations()
295 Annotation[][] allAnnotations = executable.getParameterAnnotations(); in getParameterAnnotations() local
296 assertEquals(expectedParameterAnnotationsSize, allAnnotations.length); in getParameterAnnotations()
297 return allAnnotations; in getParameterAnnotations()