Home | History | Annotate | Download | only in text

Lines Matching refs:skip

72         // skip to where metadata is
73 openTypeReader.skip((int) (offsetInfo.getStartOffset() - openTypeReader.getPosition()));
93 // skip to where metadata is
120 // skip sfnt version
121 reader.skip(OpenTypeReader.UINT32_BYTE_COUNT);
128 //skip to begining of tables data
129 reader.skip(OpenTypeReader.UINT16_BYTE_COUNT * 3);
134 // skip checksum
135 reader.skip(OpenTypeReader.UINT32_BYTE_COUNT);
137 // skip mLength
138 reader.skip(OpenTypeReader.UINT32_BYTE_COUNT);
146 // skip to the begining of meta tables.
147 reader.skip((int) (metaOffset - reader.getPosition()));
148 // skip minorVersion, majorVersion, flags, reserved,
149 reader.skip(
220 * Skip the given amount of numOfBytes
224 void skip(int numOfBytes) throws IOException;
277 public void skip(int numOfBytes) throws IOException {
279 int skipped = (int) mInputStream.skip(numOfBytes);
281 throw new IOException("Skip didn't move at least 1 byte forward");
335 public void skip(final int numOfBytes) throws IOException {