Home
last modified time | relevance | path

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

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DAnnotationsDirectoryItem.java28 public ParameterAnnotation[] parameterAnnotations; field in AnnotationsDirectoryItem
51 parameterAnnotations = new ParameterAnnotation[annotatedParametersSize]; in read()
53 (parameterAnnotations[i] = new ParameterAnnotation()).read(file); in read()
76 if (parameterAnnotations != null) { in write()
77 for (ParameterAnnotation parameterAnnotation : parameterAnnotations) { in write()
95 if (parameterAnnotations != null) { in incrementIndex()
96 for (ParameterAnnotation parameterAnnotation : parameterAnnotations) { in incrementIndex()
/art/test/715-clinit-implicit-parameter-annotations/src/
DMain.java135 … Annotation[] parameterAnnotations = parameters[i].getDeclaredAnnotationsByType(annotationClass); in DumpConstructorParameterAnnotations() local
136 for (Annotation parameterAnnotation : parameterAnnotations) { in DumpConstructorParameterAnnotations()