OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:annotationdir
(Results
1 - 1
of
1
) sorted by null
/cts/tools/dex-tools/src/dex/reader/
DexClassImpl.java
55
private AnnotationsDirectoryItem
annotationDir
;
121
annotationDir
= new AnnotationsDirectoryItem();
122
annotationDir
.class_annotations_off = buffer.readUInt();
123
annotationDir
.fields_size = buffer.readUInt();
124
annotationDir
.methods_size = buffer.readUInt();
125
annotationDir
.annotated_params_size = buffer.readUInt();
127
if (
annotationDir
.fields_size != 0) {
128
annotationDir
.fieldAnnotations =
129
new FieldAnnotation[
annotationDir
.fields_size];
130
for (int i = 0; i <
annotationDir
.fields_size; i++)
[
all
...]
Completed in 160 milliseconds