Home
last modified time | relevance | path

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

/cts/tools/dex-tools/src/dex/reader/
DDexClassImpl.java55 private AnnotationsDirectoryItem annotationDir; field in DexClassImpl
121 annotationDir = new AnnotationsDirectoryItem(); in parseAnnotationDirectory()
122 annotationDir.class_annotations_off = buffer.readUInt(); in parseAnnotationDirectory()
123 annotationDir.fields_size = buffer.readUInt(); in parseAnnotationDirectory()
124 annotationDir.methods_size = buffer.readUInt(); in parseAnnotationDirectory()
125 annotationDir.annotated_params_size = buffer.readUInt(); in parseAnnotationDirectory()
127 if (annotationDir.fields_size != 0) { in parseAnnotationDirectory()
128 annotationDir.fieldAnnotations = in parseAnnotationDirectory()
129 new FieldAnnotation[annotationDir.fields_size]; in parseAnnotationDirectory()
130 for (int i = 0; i < annotationDir.fields_size; i++) { in parseAnnotationDirectory()
[all …]