Home | History | Annotate | Download | only in zip

Lines Matching refs:skip

258             assertEquals(4, in.skip(4));
356 * java.util.zip.InflaterInputStream#skip(long)
364 iis.skip(-3);
372 iis.skip(Integer.MIN_VALUE);
380 assertEquals("Incorrect Number Of Bytes Skipped.", 3, iis.skip(3));
385 assertEquals("Incorrect Number Of Bytes Skipped.", 0, iis.skip(0));
389 assertEquals("Incorrect Number Of Bytes Skipped.", 2, iis.skip(4));
395 * java.util.zip.InflaterInputStream#skip(long)
402 // testing for negative input to skip
406 long skip;
408 skip = inflatIP.skip(Integer.MIN_VALUE);
409 fail("Expected IllegalArgumentException when skip() is called with negative parameter");
419 // looked at how many bytes the skip skipped. It is
422 skip = inflatIP2.skip(Integer.MAX_VALUE);
423 // System.out.println(skip);
424 assertEquals("method skip() returned wrong number of bytes skipped",
425 5, skip);
432 skip = inflatIP3.skip(2);
434 "the number of bytes returned by skip did not correspond with its input parameters",
435 2, skip);