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.getOffsetTracker().getNewOffsettable(file, this);
28 visibility = file.readUnsignedByte();
29 (annotation = new EncodedAnnotation()).read(file);
33 public void write(DexRandomAccessFile file) throws IOException {
34 file.getOffsetTracker().updatePositionOfNextOffsettable(file);
35 file.writeByte(visibility);
36 annotation.write(file);