Home | History | Annotate | Download | only in rawdex

Lines Matching refs:file

5  * you may not use this file except in compliance with the License.
26 public void read(DexRandomAccessFile file) throws IOException {
27 file.alignForwards(4);
28 file.getOffsetTracker().getNewOffsettable(file, this);
29 size = file.readUInt();
32 (entries[i] = new AnnotationOffItem()).read(file);
37 public void write(DexRandomAccessFile file) throws IOException {
38 file.alignForwards(4);
39 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
40 file.writeUInt(size);
42 annotationOffItem.write(file);